Hallo experts,
I am creating an app and i want to use two parameters.
The way i have been working so far and before the latest changes with the OnStart (we should not use Navigate function..)
was to use Set:
OnStart = Set(ReportScreenID,Param("ReportScreenID")
If(
!IsBlank(ReportScreenID),
Navigate(SpecificReportScreen,ScreenTransition.Cover,
{
varProcessAdd: false,
InvolvedItemsParam: Filter(
UsersCollection,
RequestID.Value = ReportScreenID
),
Navigate(Main)
)
I know that we can use an If statement in StartScreen, but what happens with Context i want to pass?
How do we write this?