LOWER Function: Difference between revisions

From Planfix
Jump to: navigation, search
No edit summary
 
Line 12: Line 12:


The '''text''' argument is mandatory and is converted to lowercase. The function LOWER does not replace characters that are not letters.
The '''text''' argument is mandatory and is converted to lowercase. The function LOWER does not replace characters that are not letters.


== Examples ==
== Examples ==

Latest revision as of 14:12, 15 February 2024

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


Go To