UPPERCASE

The UPPERCASE function converts text to all uppercase characters.

Syntax:
UPPERCASE ( single-text-expression )
Meaning:
UPPERCASE ( text_to_convert )
Returns:
A single text item

UPPERCASE produces a text item in which each byte in text_to_convert has been converted to uppercase. Any numeric or symbolic characters in text_to_convert remain unchanged.

Examples

  • UPPERCASE ( "abC123!" )

    Returns ABC123!

Related functions

  • ISLOWER
  • ISUPPER
  • LOWERCASE