Description
LowerCase returns the given text value in all lower case letters.
Action
LowerCase returns the given text value in all lower case letters.
Typical uses
A good use of this function is when a field contains both uppercase and lowercase letters and you want to convert all letters to lowercase for consistency.
Examples
LowerCase("Description")
Returns "description".
LowerCase({customer.FIRST NAME})
Returns "ronald", where {customer.FIRST NAME} is "Ronald".
LowerCase("Ronald Black")
Returns "ronald black".
LowerCase("ABC12345")
Returns "abc12345".
LowerCase("BrEaD " + "AND " + "bUtTeR")
Returns "bread and butter".
Comments
Numbers that are part of the text are not affected by the LowerCase function.