We have a power bi report which includes a PowerApps visual which has a form. This PowerApps visual gets data from the PowerBI table.
I have Navigate() function on AppStart to open the appropriate screen.
But when I open the PowerApps visual it always opens the default screen.
On PowerApps App Start I have the following code:
If(
CountRows([@PowerBIIntegration].Data) = 1,
Navigate(
screen_EditBridgeInformation,
ScreenTransition.None
)
);