1,178 questions
0
votes
1
answer
99
views
Unable to embed PowerBI report
I am trying to embed a PowerBI report into a webpage, using NodeJS and I ended up getting this:
{message: 'LoadReportFailed', detailedMessage: 'Fail to initialize - Could not resolve cluster', ...
0
votes
1
answer
41
views
How to update a Power BI Template
Months ago I have downloaded the:
Microsoft Fabric Capacity
Microsoft Fabric Chargeback Reporting
The version I have are the following:
It seems to me that I have a discrepancy between my version ...
1
vote
0
answers
29
views
Integrate filters in Power BI with Angular to pass variables
I use Power Bi in an Angular frontend. I call the method in the ngOnInit. I would now like to filter for the “roomId” in a database called ‘persons’ and in a table of the same name “persons”.
If I ...
1
vote
0
answers
38
views
How can I run XMLA commands from Java using the powerbi:// protocol?
I’m working on a Java application that needs to interact programmatically with Power BI service datasets via XMLA to perform operations such as:
Creating composite datasets
Refreshing partitions
...
3
votes
2
answers
459
views
How to pass parameters in embedded Power BI paginated report?
I'm using the Power BI Angular library to embed a paginated report with no problems, as defined in https://github.com/microsoft/PowerBI-client-angular
<powerbi-paginated-report
[...
0
votes
0
answers
66
views
Automatic Refresh token mechanism for Power Bi Embed in App Owns data approach
I am using App Owns Data with Service Principal approach to generate a access Token and in the UI i am using powerbi-client-react library to embed the report and set the token and accessTokenProvider ...
1
vote
1
answer
315
views
Create new Power BI report embedded in Angular application
I'm using Power BI embedded in an Angular application with Microsoft's library powerbi-client-angular
This works fine viewing and editing a report that exists in Power BI Service. I'm trying now to ...
0
votes
1
answer
38
views
TypeError: activePage.createVisual is not a function (Power BI JavaScript API)
I'm trying to dynamically add a visual to an embedded Power BI report using the createVisual() method as documented here:
Microsoft Docs: Create a visual in Power BI embedded
However, when I try to ...
0
votes
0
answers
32
views
powerbi-client-angular setting filter in report config adds duplicate filters
I am using powerbi-client-angular to embed PowerBI report in angular web app using "User owns data method"
I want to apply some filters first time the report loads in the web app.
app....
0
votes
0
answers
100
views
I'm getting a 401 (unauthorized) status code when using my service principal access token to call the Users.GetUserArtifactAccessAsAdmin API
I'm trying to use a service principal to call the Users.GetUserArtifactAccessAsAdmin API in .NET.
I can obtain the access token for the service principal, but when I make the API call, I receive a 401 ...
1
vote
0
answers
315
views
How to export a Power BI Embedded report with applied filters to PDF using the Power BI REST API?
Context
I have a Power BI embedded report in my Vue application. When a user clicks an element on a bar chart, it automatically filters the data on other visualizations. I want to be able to export ...
0
votes
0
answers
181
views
How to generate new Access token by using refresh token in power bi custom connector
I have created a custom connector that calls an API and generate report
Now for that I need access token while connecting the connector first time we are able to generate the access token
but once ...
0
votes
0
answers
69
views
Power BI Embedded A1 Node Type Maximum Load
This is my case:
Only 5 persons as a Power BI reports generator/contributor/author
We have more than 100 users are only viewers
As in this page https://azure.microsoft.com/en-us/pricing/details/...
0
votes
1
answer
107
views
Power BI Embedded report has random visual artifacts - labels overlap with visuals
Using Power BI embedded, I've embedded reports into a web page. The reports render perfectly the vast majority of the time. Rarely and seemingly randomly, the report has visual artifacts: labels ...
0
votes
0
answers
258
views
Is it possible to embed a Power BI report without using an iframe?
I have a requirement to embed a Power BI report ("Embed for your Customers") into a website without using an iframe. I referred to the following article and GitHub code, but the solution ...
0
votes
0
answers
40
views
Dynamic Aggregation and Relationships in Power BI
I have a dataset where each row provides information about invoices that are either due or already paid. My dataset looks a little like this:
Store
Product
Value
Installment Number
Due Date
Payment ...
1
vote
1
answer
122
views
App Registration error AADSTS500011 show tenant is as domain instead of long string provided
I've tried numerous times to register an app and connect to in in python:
app_id = '670...'
tenant_id = '065...'
client_secret_value = 'YJr...'
import requests
import msal
authority = f'https://...
0
votes
1
answer
122
views
PowerBI Report Embed from personal workspace in Local App
I have created a report with mock data in PowerBI (free version), which I would like to embed onto a local react application for testing purposes, but for some reason I cannot make it work.
My main ...
0
votes
1
answer
538
views
Integrate PowerBI with React App : crypto_nonexistent error
I am trying to embed PowerBI report in a react app. I have followed this example from microsoft. The example is in Typescript but I am using Javascript
Here is my index.js file.
import React from &...
0
votes
1
answer
56
views
create report in power bi embedded
I am using the demo example for powerbi-client-react: https://github.com/microsoft/powerbi-client-react
I've added a onCreate() function to generate a new report but running into this 'no create ...
1
vote
1
answer
278
views
PowerBI Embedded Bookmark - Api client Javascript
I'm embedding a Power BI report using the JavaScript API and want to know if there's a way to set the Bookmark Pane to be collapsed by default when the report loads. Ideally, I'd like to control this ...
0
votes
0
answers
206
views
Power BI JS API - Challenges in integration with Slicer / Filter
I am new to Powerbi and working on a website and successfully integrates the Powerbi using the embed-token and JavaScript API found at the Powerbi Playground.
Following are the steps, how I integrate ...
0
votes
0
answers
101
views
Layout Report is not rendering in Safari -Powerbi embeded analytics Javascript
We are trying to Embed a Power BI report layout to our application using below JavaScript libraries
powerbi-client v2.19.1 and powerbi-report-authoring v1.1.1 from below reference
showcase-layout
Git ...
0
votes
1
answer
305
views
How to generate access tokens for power BI report?
I need to generate embed access token for a power bi report with Service principal or AD application.
I just want to use my AD username and password.
-1
votes
1
answer
71
views
Avoid PBI loading screen after applying filters with PBI Embedded JS
I set Basic filters using
await report.setFilters(pbiFilters)
Then, I render my reports using this function
await report.render()
which results in this loading screen
Power Bi Embedded Loading screen
...