UPPER
Converts all lowercase alphabetic characters in a string to uppercase.
Syntax
UPPER(string)
Arguments
Argument | Description | Default |
---|---|---|
string | The string to reformat. | None |
Results
Result | Description |
---|---|
Return | Contents of string with lowercase characters converted to uppercase. |
%%RC | Always set to 0. |
%%RM | A null string (''). |
%%RV | Always set to 0. |
Examples
Function Call | Return |
---|---|
UPPER(' a b c ') | ' A B C ' |
UPPER('amount due: $1,245') | 'AMOUNT DUE: $1,245' |