UCASE | LCASE
The UCASE
converts all alphabetic characters in a string to all upper
case.. LCASE
converts all alphabetic characters in a string to all
lower case.
Syntax
UCASE | LCASE(string_expression)
Return Value
Returns a string value in either all upper case or all lower case letters.
Input Parameters
string_expression
Required. A dimension attribute or expression that returns a string
value.
Examples
UCASE(" Hello World ") returns "HELLO WORLD"
LCASE(" Hello World ") returns "hello world"