
Hi
Is it possible to have a FormScreen visible only if a condition is met ?
I have 11 questions dispatch in 6 different FormScreen. For the first question, in the first FormScreen, all user have to answer it.
The next 5 FormScreen have 2 questions each, this allowed me to check if the value of the combined answers is equal to 200 or not If yes, the user can pass to the next FormScreen and etc, if no, an error message appear at the top of the screen (condition statement is in a button OnSelect).
Each FormScreen is for one team (Team A, Team B, Team C, Team D and Team E).
What I would like to acheive is if the user is from Team A, then the ScreenForm for his team is skipped automatically. I don't want the user to answer the questions for his team but only to answer to the other team questions.
Is there a way to make it happened ?
Thanks
Hi @Assepa ,
Screen doesn't have a Visible property. Hence, generally we use Navigate function along with If statement to move to different screens based the condition:
If(ConditionA, Navigate(Screen2), ConditionB, Navigate(Screen3), Navigate(Screen4))
Best regards,