Hi @Dishen ,
As you see the picture from my previous reply,
I have 2 screens as 'Review Screen 1' & 'Review Screen 2', these consist 1 checkbox and 1 label representing status of review on that screen.
So the formula will work.
I have made a screen with gallery to just show User which Screens has to be reviewed (Marked as Review).
Since you can only move from 1 screen to another, its not feasible to track multiple screens with Review.
That's why I gave an alternative approach.
If your question is "Why have I used Gallery ?"
Ans: I have put up the gallery so that User can see which screen needs to be reviewed and if we click it should navigate me to that screen.
However, you said there's only 3 screens.
Now you can try this...
button onSelect property under Gallery
If(
ThisItem.ScreenName = "Review Screen 1",
Navigate('Review Screen 1', ScreenTransition.None),
If(
ThisItem.ScreenName = "Review Screen 2",
Navigate('Review Screen 1', ScreenTransition.None)
)
)
Add condition and screens accordingly within nested If statements.
Just use the collection data as you like, just like I did using data within gallery.
Also from above reply, you don't need Screen column in collection as feature of Navigating screen using its Name is not available right now.
Maybe in future.
Hope this information helps.