UPPER

Turns all lowercase letters into uppercase (capital) letters

Usage

UPPER(text)

Parameters

text

(Required) The text to transform

Examples

Example With these variables Result

UPPER(“John Doe”)

(None)

“JOHN DOE”

UPPER(country)

country is "canada"

“CANADA”

More information

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

See also