ToTitleCase
Last updated
Was this helpful?
The ToTitleCase() function converts every first character of a word to uppercase.
This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.
Returns a copy of text where all words start with an uppercase character.
ToTitleCase(text)ToTitleCase("The wind in the willows")
=> "The Wind In The Willows"
ToTitleCase(123)
=> Invalid expression
text
text
☑️
a text
Last updated
Was this helpful?
Was this helpful?