I know if I do inputs and patch I can handle taking an input field and making it up case.
But how about within a form though trying to use the "simple" version with SubmitForm(myForm) so how can I work with the datacard to convert the string to upper so submitting the form submits it as upper.
1. Select the DataCard containing the input field you want to convert to uppercase.
2. Update the Default property of the TextInput control to display the text in uppercase dynamically. Use the Upper function to do this
Upper(Parent.Default)
3. Update the Update property of the DataCard to convert the input text to uppercase before saving it to the data
Upper(DataCardValue1.Text)
4. Replace DataCardValue1 with the name of your TextInput control within the DataCard.
Now, when the form is submitted using SubmitForm(myForm), the string will automatically be saved in uppercase to the data source.
If this helps please mark my answer verified
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.