Power BI Integration with PowerApps V2
Microsoft Power BI has enhanced its Integration feature with PowerApps. This video demonstrates how entries added or removed using PowerApps visualization automatically updates the report! The video also walks you through how to build the PowerApp using the integration feature.
Helpful Formulas:
background fill: RGBA(175, 191, 224, 1)
App:
OnStart>NewForm(Form1);Set(SubmitVar,false)
Screen1:
Submit Button OnSelect: Set(SubmitVar,true)
Yes Button OnSelect: SubmitForm(Form1);PowerBIIntegration.Refresh();NewForm(Form1);Set(SubmitVar,false)
DeleteScreen:
Delete Icon OnSelect: Remove('[dbo].[Test]',ThisItem)
Helpful links:
Charles Sterling's video:
https://www.youtube.com/watch?v=3eiUR8Lo4i4
Deep-dive in Power BI Integration with PowerApps
https://www.youtube.com/watch?v=BxQGGzdH3vo
*This post is locked for comments