UPPER function

UPPER(Text) UPPER(Text)

Text

Text or { Text }

The text string whose lower-case characters should be replaced by equivalent upper-case characters.

Returns

Text or { Text }

A version of the given text string with all lower-case characters replaced by equivalent upper-case characters.

Converts all lower-case letters in a text string to upper-case letters and returns the converted string.

Examples

UPPER("ABc")UPPER("ABc")

Returns "ABC".

CONTAINS(UPPER(TextField1), UPPER(TextField2))CONTAINS(UPPER(TextField1); UPPER(TextField2))

Returns whether the value of TextField1 contains the value of TextField2. The comparison is case-insensitive, as both parameters are made upper-case before being passed to CONTAINS.