Hello.
I have a Sharepoint list with about close to 100 questions (don't ask 🙂 ) and i have decided to break up the form into 5 screens. On the screen (Bio Detail Form) there is a question that asks for Marital status. If the user chooses "Married", then this should unhide questions throughout the form that have to be filled out pertaining to the spouse.
This conditional statement works for the screen (Bio Detail Form) that has the Marital Status field but not the other screens. On the OnSelect and OnChange property for the Marital Status Datacard (on the Bio Detail From) i used:
Navigate('Emp Detail Info Form', ScreenTransition.Fade, {varMarried:DataCardValue9.Selected.Value}) and on the Emp Detail Info Form i am using
If("Married" in varMarried, true) in the Visibility property of the datacard but it is not passing the value from the Bio Info Form to the Emp Detail Info Form .
I even tried adding a DropDown Control and that didnt work either 😞 .
Can someone tell me what i am doing wrong pleaseeee and thank you!