Pregunta

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

¿Fue útil?

Solución

Try this:

If(Value(Label20.Text) < 16, Navigate( Screen3, ScreenTransition.Cover ), Value(Label20.Text) > 16, Navigate( Screen2, ScreenTransition.Cover ))
Licenciado bajo: CC-BY-SA con atribución
scroll top