UPPERFIRST

Turns the first character into an uppercase (capital) letter, leaving the rest unchanged

Usage

UPPERFIRST(text)

Parameters

text

(Required) The text to transform

Examples

Example With these variables Result

UPPERFIRST(“marco”)

(None)

“Marco”

UPPERFIRST(country)

country is "canada"

“Canada”

UPPERFIRST(“ALL CAPS”)

(None)

“ALL CAPS”

UPPERFIRST(“ spaces before”)

(None)

” spaces before”

More information

If you use a variable, its value will not be modified. The UPPERFIRST function will return the transformed text, but if you use the variable elsewhere, it will have its original text.

See also