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

Était-ce utile?

La solution

Try this:

If(Value(Label20.Text) < 16, Navigate( Screen3, ScreenTransition.Cover ), Value(Label20.Text) > 16, Navigate( Screen2, ScreenTransition.Cover ))
Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top