LOWER Function
From Planfix
The LOWER() function converts the characters in a text string from uppercase to lowercase.
Format
- LOWER(text)
The text argument is mandatory and is converted to lowercase. The function LOWER does not replace characters that are not letters.
Examples
| Formula | Description | Result |
|---|---|---|
| LOWER("A.M.Wilson") | Returns the text in lowercase letters | a.w.wilson |
| LOWER({{Task.Name}}) | Returns the text of the variable in lowercase letters | task name |