It is a bug; the filter panel is showing no matter what options you set in your embed code. We've had a ticket open with Microsoft for 5 days and they confirmed it yesterday. They have a fix being tested. No timetable on release.
Re: Invisible Filter Pane visible in Power BI Embedded
Re: Invisible Filter Pane visible in Power BI Embedded
Re: Invisible Filter Pane visible in Power BI Embedded
Not really. Occasionally Microsoft will make mention of it on their Power BI status page but not always. It's frustrating.
Re: Invisible Filter Pane visible in Power BI Embedded
Thanks. Yeah, that is a lile frustrating. Sounds like their employees aren't necessarily even aware of the bugs in progress either.
Need help in creating a custom table for a report
Hi All
I need help in creating a custom table for report. I am relatively new to power BI.
I need to add few text rows before the actual values. Any help would be highly appreciated.
Thanks & regards
Anand
Unable update Datasource Credentials using credential type as OAuth2 using Power BI Rest API
Hello,
While trying to update a Datasource credentials for oAuth2 authentication using the Power BI Rest API, it throws an error saying the credentials are invalid.
Error: The credentials provided for the Web source are invalid.
As shown in this documentation, it requires an access token to be passed while using the API to change the data source credentials. It is not clear as to what type of access token needs to be used for this and how to generate the same.
Any help would be appreciated plus official documentation needs to be updated to include more details related to generation of access token.
Re: Background color of embedded report
We started seeing this issue as well a few days ago. In the Power BI service everything looks good. But in the embedded dashboard, the dashboard background color is correct but the tile background color is white, regardless of what we change it to in the dashboard theme settings. Everything was fine for many months up until this week.
Re: WordCloud 1.7.1 - Stop Words, Word-breaking, & Buckets
Hey
Can't change tabs in a report
Hi,
We have Power BI Embedded in our web application and we ran into this issue where we can't navigate between tabs in the report. Clicking on the tabs doesn't to anything, it doesn't even throw any errors in console. This happens on both Chrome and Firefox. The weird thing is that this problem is only in our production environment, in our dev server and in localhost tabs work just fine.
Here's my config object:
Any ideas?
Re: ADO.Net: Failed to find or load the registered .Net Framework Data Provider
Anyone find a work around for this yet? I've got the same issue since the May 2020 update - I even tried uninstalling and reinstalling using an old 2019 install package I had kept but it pushed the May 2020 update again.
Check if a sort event was triggered
Hi,
I want to check if a sort event was triggered. i.e. one of these options (in the image below) was selected by user.
Can you point me to right direction?
Re: We want your feedback on Power BI Embedded!
We are currently analyzing embedding paginated reports in a custom .NET Core application. We are noticing two features that are not available that are critical to our customers. Subscription & Generate Link. Would these be available in any future releases?
Re: ADO.Net: Failed to find or load the registered .Net Framework Data Provider
Check the following solution:
1. Go to the app folder (for me: D:\Program Files\On-premises data gateway (personal mode) ) and copy the Microsoft.PowerBI.Scripting.dll file into 'm' folder (D:\Program Files\On-premises data gateway (personal mode)\m )
2. Kill the gateway tasks (especially Microsoft.PowerBI.DataMovement.PersonalGateway.exe)
3. Run the gateway and check the results
Re: Plot a line on a Map
This is an old thread, but in case someone comes across it, the Route Map custom plugin does plot routes on maps https://appsource.microsoft.com/en-us/product/power-bi-visuals/WA104380985?tab=Overview
Re: ADO.Net: Failed to find or load the registered .Net Framework Data Provider
Thank you andrzejciebiera
I just tried your method and it worked for me, I am able to refresh again.
Really appreciated!
Frank
Re: Get PBIX files as admin
Couldn't get the files through admin, however using this API call (which I missed) allowed me to get the reports within that workspace. However, the user needs to be in the workspace.
https://docs.microsoft.com/en-us/rest/api/power-bi/reports/exportreportingroup
Connect app (Apps Marketplace) to Azure SQL DB
Hi,
i implemented an app, which i want so sell via marketplace. First of all there is no chance to add a selling price for a Power BI App.
So i am trying to implement a bypass monetarization by connecting from the PowerBi App to a azure sql db, where a token is checked.
No, of course, i cannot add a firewall rule, because i don't know the ip of the customer, who loaded the app from store. Also i want to avoid, that the customer has to type in the credentials for the azure sql database.
Anybody, who solve this. Is it possible to solve at all?
Thank you very much
Andy
Cannot find format entry in capabilities.json
Hi,
I have several entries listed in the "format" section.
The schema should be in capabilities.json but i cannot find the entry "Title" and some others entries that are visible in section "Format" in powerbi.
capabilities.jon in JSON Format
Data Labels, Date Type, are listed in capabilities.json but
I cannot find the entry "title" - and the other entries: Background, Lock .., Border, Shadow - where can i remove or change this entries?
Row Level Security with PowerBI Embedded
Hi,
We have several reports that utilise PowerBI Embedded which pull data through an on-premises gateway. This all works great. However, we have reached a stage where we want to use powerbi roles to implement row-level security on a report.
Our goal is to attach a role to users on our site, which is then passed through as part of the identity on token creation, corresponding to the roles defined in the powerbi dataset.
Following the guide here I managed to create a token with an identity:
var generateTokenRequestParameters = new GenerateTokenRequest("View", null, identities: new List<EffectiveIdentity> { new EffectiveIdentity(username: username, roles: new List<string> { role }, datasets: new List<string> { datasetId }) });var tokenResponse = await client.Reports.GenerateTokenInGroupAsync(groupId, reportId, generateTokenRequestParameters);
This doesn't work however, and returns an error:
Creating embed token for accessing dataset <datasetId> shouldn't have effective identity"
Doing some more research, it seems that I need to attach users to the roles, but due to us using a service principal, there is only one effective user on the report.
I've tried attaching the service principal by going to the dataset in the workspace, opening the menu and selecting security. From there I tried typing the service principal in but it just says it's an invalid email.
I'm really not sure about how to proceed here, so any help would be greatly appreciated. Thanks!
Re: Joinning two tables in dax code
If you want to do this in DAX you need to use either LOOKUPVALUE or TREATAS.
Why not do this in the model view though?