Quantcast
Channel: Service topics
Viewing all 62160 articles
Browse latest View live

Data comes from sql (on-premises) and need to schedule a refresh using data gateway in cloud(azure).

$
0
0

Hi,

   Data comes from sql (on-premises) and need to schedule a refresh using data gateway in cloud(azure) for Power BI.

Is that possible and how?

 

Thanks,

Krithika


Restrict dataset download in power bi Service

$
0
0

Hi,

 

what are all the possible ways, we can restrict dataset downlaod option to the end users in power bi service?

 

can anyone please help me with this?

 

 

Thanks in advance!

indicate a path in a publication PBI for python script

$
0
0

Hello everyone,

 

I made a python script to draw the map of France thanks to a .geojson file in python, but the probleme is, once i have published my report, the path is wrong, i have to indicate a new path to indicate the path in the python script to read the .geojson file. But which path could i use to make it works?

 

Thanks.

best practice for Power BI Pro License?

$
0
0

Is there any documentation on best practices in terms of giving Power BI Pro license inside an organization?

 

When someone should be given a license and when shouldn't ? Or what to do with cases where a licenses is need but for a one-time case and don't want to give a 1-year subscription?

 

Is the premium license separated from the Pro license?

Can't export to Power BI Desktop format

$
0
0

Hi, friends,

I usually download the desktop format pbix file. But now I don't know why I can not download it ?

We couldn't export to .pbix format. Thank you for your support.

Please try again later or contact support. If you contact support, please provide these details.Hide details
  • Activity IDab5eeb8b-e51d-4525-a40b-f1aaafebe41a
  • Request ID6f5eaf85-1d5b-f734-c222-8b7fa90ef1ea
  • Correlation ID41d2b7b8-9ee4-4181-5880-2e8abffdeb37
  • Status code500
  • TimeWed May 26 2021 20:51:11 GMT+0800 (China Standard Time)
  • Service version13.0.16080.73
  • Client version2105.2.06171-train
  • Cluster URIhttps://wabi-west-europe-b-primary-redirect.analysis.windows.net/

Fiscal year comparison

$
0
0

Dear Experts,

 

I need a help

 

I have a table with 2 fiscal years 1 column is the order received FY and another is billable FY, I would like to arrive at the deferred billing amount for the next FY.  The sample data is here

 

PO NO

P.O. DATE

FY

DUE DATE for billing

Billable FY

Order Value

Po00007

29-Jul-20

2018-19

01-Aug-20

 2020-21

 5,000.00

Po00007

29-Jul-20

2018-19

01-Nov-20

 2020-21

 5,000.00

Po00007

29-Jul-20

2018-19

01-Feb-21

 2020-21

 5,000.00

Po00007

29-Jul-20

2018-19

01-May-21

 2021-22

 5,000.00

   

 

 

 

Next FY

     

our FY is Apr-Mar

     

 

 

Thanks in advance

Prasad

Dashboard - Suscription It does not render correctly.

$
0
0

Hi everyone!

 

I have problems that when sharing the email with dashboard and the subscription, the image is not rendered correctly.

 

Wrong.JPG

 

Does anybody know how I can fix it? I have other dashboards that are the same and render correctly.

 

Thanks!

Regards!

Best practice for getting data from csv file

$
0
0

Hi,

 

I just heard about Power BI ability to connect to csv files located on SharePoint online then automatically create a dataset.  And I'm wondering if there would be some benifits to update my current ETL strategy.  I'm not concern about refreshing the data because we get updated data only once a month but I'd like to be sure I'm using Microsoft product for what they were intended for and with the optimal architecure.

 

Currently, I use 3 dataflows to import data into Power BI Services. 

All sourced from csv files located in SharePoint online.

With a few transformations (rename headers, a few calculated columns and some value replacement)

 

  1. Fact table #1 : ~500k rows
  2. Fact table #2 : ~60k rows
  3. 10 dimension tables, 1 dimension has ~20k rows but the others are all under 1k.

Then I use 2 datasets.  In each dataset I created a star model with 1 fact table and its related dimensions.

Most transformations and data prep steps are done in the datasets.

Those datasets are used for many official reports AND and are available to analyts across the organisation.

 

Should I drop the dataflows and rethink the dataset to connect directly to the csv files located in Sharepoint online or it is actually more robust the way I designed it ??

 

Thank you

--mo

 


Data Disappears from my UI

$
0
0

I have been experiencing an issue after I publish to my workspace. Immediately after the publish I see data in all pages. However, after I work a bit in the dashboard, I will got to a few pages and see that the data is empty. Each of these 3 pages contain elements from a particular join. But everything looks fine with the join when a investigate.

Is I publish again, the same cycle occurs. I have even deleted the dashboard from the production workspace and then publish as new. Same issue. 

This makes the dashboard unworkable by my executive users.

Please help?

Access Denied to Reports by PPU Account

$
0
0

I have been using a Pro account and everything was fine.

Last week I upgraded to a Premium Per User account because I need some of my datasets refreshed more than 8 times per day. But apparently the default “My Workspace” won’t pick up the new license,so I had to create a new workspace and publish all previous reports to this workspace again.

And here is the thing, no one in my organization can see those reports in the new workspace. With the link I shared with them, they got a “No permission for the underlying dataset” error. So I went back and set all of them as Viewer in the workspace. Then they got a “You need a premium account” error.

Am I missing something here? What else do I need to do for them to see the reports? Or is it that reports by premium accounts can only be viewed by other premium accounts?

Unable to refresh Dynamic Data Sources

$
0
0

We are building a Power BI report and need the biographies of Congressional officials. However, because this is a dynamic data source, we cannot schedule refreshes in the Power BI service. M query is below. Any ideas? 

 

let
Source = Xml.Tables(Web.Contents("https://www.senate.gov/legislative/LIS_MEMBER/cvc_member_data.xml")),
Table1 = Source{1}[Table],
#"Removed Columns" = Table.RemoveColumns(Table1,{"name", "party", "state", "homeTown", "stateRank", "office", "committees", "Attribute:lis_member_id", "leadership_position"}),
#"Inserted Text Before Delimiter" = Table.AddColumn(#"Removed Columns", "Text Before Delimiter", each Text.BeforeDelimiter([bioguideId], "0"), type text),
#"Merged Columns" = Table.CombineColumns(#"Inserted Text Before Delimiter",{"Text Before Delimiter", "bioguideId"},Combiner.CombineTextByDelimiter("/", QuoteStyle.None),"bioguideId.1"),
#"Renamed Columns2" = Table.RenameColumns(#"Merged Columns",{{"bioguideId.1", "bioguideId"}}),
#"Invoked Custom Function" = Table.AddColumn(#"Renamed Columns2", "fxBIO", each fxBIO([bioguideId])),
#"Expanded fxBIO" = Table.ExpandTableColumn(#"Invoked Custom Function", "fxBIO", {"biography"}, {"biography"}),
#"Renamed Columns" = Table.RenameColumns(#"Expanded fxBIO",{{"biography", "Bio"}}),
#"Extracted Text After Delimiter" = Table.TransformColumns(#"Renamed Columns", {{"bioguideId", each Text.AfterDelimiter(_, "/"), type text}}),
#"Renamed Columns1" = Table.RenameColumns(#"Extracted Text After Delimiter",{{"bioguideId", "bioguideID"}}),
#"Removed Errors" = Table.RemoveRowsWithErrors(#"Renamed Columns1", {"Bio"}),
#"Added Custom" = Table.AddColumn(#"Removed Errors", "BioSource", each "Source: http://bioguide.congress.gov/")
in
#"Added Custom"

 

AWS dataflows

$
0
0

Can dataflows be created from data stored in AWS S3 ?   

 

And can dataflows be stored in AWS S3?   

How does Schedule Refresh internal logic work in Power BI

$
0
0

Hello,

I am newbie in PowerBI, i need to make a choice on type of connection to choose for my power bi reports. I have approx 50 DataSet with each having 4M records. I have read articles and found that "Import" will be faster. For now my report takes approx 45 min to refresh the data, i need to understand how the processing is done inside PowerBI for schedule refresh.

 

Does it truncate the previous imported data and reloads it or it updates some of the data and reinsert the new entry?

Can i schedule 50 DataSet to refresh at same time, how it will be processed parallel/sync way? What kind of issues i will run in.

 

Any help will be much appreciated!!!!

 

 

PowerBI Embedded Dymanic RLS - users table auto population

$
0
0

We are designing a Embeded powerBi application with RLS for our customers. Inherently we are using a users table containing the userid and the customer whose data will be filtered..

 

username,comp_id

test,1

 

example.

here Data filtered for comp_id 1 is output when test ID is used to invoke the embeded application. Can Powerbi populate this users table from our SSO provider (like okta or onelogin).

 

Gateway Erro - não reconhece


Work area

$
0
0

Hello

I have a workspace that was deleted but all the boards that were in that work area are still displayed in the shared accounts

  1. how to remove permissions from dashboards
  2. you can get that work area back
  3. or how I could remove from area shared with me from accounts

Paginated Report returns no results if a parameter null checkbox is checked

$
0
0

Hi Guys,

 

I Wase creating a paginated report with only one filter. My requirement is that if i didnt select anything in the filter it should return all rectods. But unfortunately it is returning no results even if i select NULL checkbox as well.

 

 

On-Premises gateway not configured correctly

$
0
0

Hi,

 

I am using On-Premises gateway enterprise mode. they had been working good.

Recently I got issues, I created gateway and shared to others, but it always showing "Not configured correctly" in users gateway page. I add user as administrator.

how ever it is showing good in my page.

Can anyone give some advise? it is EAGateway02.

 

MicrosoftTeams-image (5).png

Regards

Steven

Scheduled refresh stopped working

$
0
0

The scheduled refresh has stopped working for my dataset. It has been running fine since a couple of months and now it has stopped. Data can be refreshed fine from Power BI Desktop.

 

I have tested numerous time to republish the dataset/model. The republishing goes fine, but the schedule refresh shows the same error message:

Something went wrong

Please try again later or contact support. If you contact support, please provide these details.

Cluster URIWABI-US-EAST2-redirect.analysis.windows.net
Activity ID396c4de8-31ef-4135-a63a-8fa537ff97b5
Request ID89f99deb-c5a4-8c34-9b36-386d2702879a
Time2021-05-27 05:46:14Z

I'm a Power BI Pro customer.

How to change storage location of pbix

$
0
0

Hi,

I have created a report via PowerBI desktop.  Thereafter I published it on the Power BI services on my workspace via the "+NEW" option by pointing it to the .pbix file saved in a folder.

 

I want to move the pbix file to another folder.  How I can do that so that the existing Power BI report via services remains accessilbe to all existing users?

Viewing all 62160 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>