ToTitleCase

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.

Syntax

ToTitleCase(text)

ToTitleCase("The wind in the willows") => "The Wind In The Willows"

ToTitleCase(123) => Invalid expression

Parameters

NameTypeRequiredDescription

text

text

a text

Last updated