Hi all,
I create a powerapps app that consists of 5 screen.
On Screen 1, I connect it to SharePoint List data source. User need to fill in the form in Screen 1 including their email (DataCardValue1) and will submit it.
User will be routed to screen 2,3,4 for several assessment.
If the result of assessment is success, user will click a Button on Screen 5 and email notification will be sent to the email inserted in Screen 1 (DataCardValue1).
My question is, how can i make DataCardValue1 from sharepoint list as a global variable so that it can be used in another screen especially in Screen 5?
I tried to do something like
Navigate('Screen2', ScreenTransition.None, {Text: DataCardValue1.Text})
but it doesnt work.
Your help is greatly appreciated. Thanks!