Question

I need to set a navigation condition:

If Label20 <16 navigate to screen3, if label20>16 navigate to screen 2.

Can anyone assist?

As always thanks a million! jose

Was it helpful?

Solution

Try this:

If(Value(Label20.Text) < 16, Navigate( Screen3, ScreenTransition.Cover ), Value(Label20.Text) > 16, Navigate( Screen2, ScreenTransition.Cover ))
Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top