UPCASE Function

Converts all lower-case letters to upper-case. Characters that are not lower-case letters remain unchanged.

Note: The UPCASE function effectively supersedes the use of OCONV(expression, 'MCU') as it is simpler and faster.

Syntax

UPCASE(expression)

Syntax Elements

expression any expression that evaluates to a string.

Example

X = UPCASE(abC)

Variable X is assigned the value 'ABC'.