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