Embed Power BI report in Power App with the page specified
- Get the URL of Power BI report:


2. Add a Power BI Tile control in your Power App. Paste the URL to “TileUrl” property.
3. You are done! Now if you need to open the Power BI with the page in specified, you need to add &pageName querystring. To get the string, open your Power BI report, open the page you want to specified, copy the URL. The pageName string is the end part of the URL.
You will see something like it:
https://app.powerbi.com/groups/xxxxxxxxxx/reports/yyyyyyyyyy/ReportSection9b999c125d99b999f999?experience=power-bi
ReportSection9b999c125d99b999f999 is the pageName string.
Please note that the string is NOT ALWAYS start with “ReportSection”. For example, you may see something like this:
https://app.powerbi.com/groups/xxxxxxxxxx/reports/yyyyyyyyyy/1323231f55555caa7777?experience=power-bi
1323231f55555caa7777 is the pageName string.
4. Add the pageName string into the TileUrl property. So that the URL become:
https://app.powerbi.com/reportEmbed?reportId={reportid}&autoAuth=true&ctid={ctid}?pageName=1323231f55555caa7777
That’s it. Now your App can open Power BI report specific page!