Forum Discussion
Nicfurlong
8 years agoRegular Visitor
Adding a details screen to a PowerBiIntegration App
Using this video as inspiration (https://www.youtube.com/watch?v=-CjGKoXem0I) I've successfully created an app using power apps, within my power bi dashboard. However, when it automatically c...
Quindici
7 years agoFrequent Visitor
I found this to be WAY more difficult than it needed to be also.
assume you have a powerBIIntegration object in the tree view? If not you need to select your PowerApp APP properly in the PowerBI Service!
If you created an APP using DATA it isnt "related" to the data in the integration object (fields added in Power BI).
To make this work I added the following code to the Gallery Object Item definition. My data has UID as its Primary Key. On another screen I had to add an object (I used a datatable) that I could pull the selected value for UID from.
It would have been easier if there was a way to reference the PowerBIIntegration.data.uid directly.
LookUp('[dbo].[FY20AOP]' , UID = DataTable1.Selected.UID )
Hope this helped.
George ...