capitalize
To capitalize the first letter of each word
This function converts the first character of each word in a text into a capital letter. This can be handy to correct entered data that should always begin with a capital letter, for example, the first and last name of a person.
In Trigger after update, you could add the function to automatically correct the entered data.
capitalize(string)
string
1
capitalize('Last name')
Result: Chamani (with the field Last name = chamani)
1
capitalize("Sam chamani")
Result: Sam Chamani
1
'Last name' := capitalize('Last name')
Result: Dacosta (with the field Last name = dacosta) for example added in the Trigger after update in the field settings of the text field Last name.
Last modified 8mo ago