Hi,
How can I set a variable (varSubmitStatus) to the value of a field (Submission_Status_DataCard) in the form I have open in edit view?
Many thanks,
Jesse
Solved! Go to Solution.
Set the variable in the OnVisible of the Screen where the form is located:
Set(varSubmitStatus,Submission_Status_DataCard.Text)
You can also put it on a Button so when yo click, the variable will be available to be used.
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Use
Set(varSubmitStatus, DataCardValue1.Text) // for Text field
Set(varSubmitStatus, DataCardValue1) // for Numeric field
Set(varSubmitStatus, DataCardValue1.SelectedDate) // for Date Picker
Replace DataCardValue1 with the DataCardValue number relevant to the the DataCard Submission_Status_DataCard.
Set the variable in the OnVisible of the Screen where the form is located:
Set(varSubmitStatus,Submission_Status_DataCard.Text)
You can also put it on a Button so when yo click, the variable will be available to be used.
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
great, thanks!
User | Count |
---|---|
262 | |
110 | |
98 | |
54 | |
39 |