Hello,
Using Navigate to pass a value doesn't seem to work for me. I'm sure it's something simple, but I can't figure out what is wrong.
I have a simple app that allows users to "check in" either at the office, or at a work event. if they are at a work event, they can enter their work location and the submit that work location.
I want to take that work location to another screen where I have a few more questions that need answers and then the whole thing is submitted to my SharePoint list for storage. Everything works accept I can't get this work location passed to the next screen for submission. It's just blank.
Navigate(QuestionScreen, Transition.None, {WorkEventInput_User:vWorkEvent});
I get the Work Event information on screen one from a text input called "WorkEventInput_user" and then I'm expecting it to be available on the QuestionScreen as "vWorkEvent".
Unfortunately, when I test if the variable has passed to the Questionscreen, this test code appears blank:
"Work Event: " & vWorkEvent
Am I doing it right?