
Announcements
I have a Form field that will goto Sharepoint List and one of the fields is entering Name.
Can first letter become capital letter although user put their last name with small letter?
I see that I have to use "Proper" but not sure in where in Text input field.
In the Update property of the card and assuming the textinput control inside is called TextInput1 put:
Proper(Textinput1.Text)
Replace the Textinput1 with the actual name of the control. This will automatically save the capitalized first letter of the text the user types in regardless of what it actually typed.