LOWER Function: Difference between revisions

From Planfix
Jump to: navigation, search
(Created page with "{{#seo: |title=LOWER function |titlemode=append |keywords=planfix, function, LOWER |description=LOWER function }} 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 == {| class="wikitable" |- ! style="font-weight: bold" | Formula ! style="font...")
 
Line 32: Line 32:


== Go To ==
== Go To ==
*[[Standard functions|Formulas]]
*[[Standard functions | Standard operators and Planfix functions]]
*[[Calculated fields]]
*[[Reports]]

Revision as of 14:10, 7 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