Forum Discussion

Mahmoud121's avatar
Mahmoud121
New Member
1 year ago
Solved

Powerbi integration

Hello all,   Please if you know how can I integrate a powerapps application in powerbi but i want to show the respective powerapp page in the powerbi report with the same name, in simple words, 5 p...
  • rajendraongole1's avatar
    1 year ago

    Hi Mahmoud121 - Create a PowerApps app with multiple screens.Pass parameters from Power BI to PowerApps (such as page name or screen name).Configure navigation logic in PowerApps to load the correct screen based on the parameter.Add a PowerApps visual to each Power BI page and ensure it passes the correct screen identifier to the app.This method allows you to integrate a single PowerApps app across multiple Power BI pages while showing different screens on each page, depending on the context of the report.

    eg: If(Param("Screen") = "Screen1", Navigate(Screen1), If(Param("Screen") = "Screen2", Navigate(Screen2), ... ))
    In Power BI, go to the page where you want to add your PowerApps visual.In the Visualizations pane, click on the PowerApps icon to add the visual to your report.You will be prompted to either select an existing PowerApps app or create a new one. Choose the existing app that you've prepared. you can pass the above parameters.

    Hope the above steps and process helps in prepare the same.