Description
LCase converts the given string to all lower case and returns it.
Action
LCase converts the given string to all lower case and returns it.
Typical use
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
LCase ("Description")
Returns "description".
LCase ({customer.FIRST NAME})
Returns "ronald", where {customer.FIRST NAME} is "Ronald".
LCase ("Ronald Black")
Returns "ronald black".
LCase ("ABC12345")
Returns "abc12345".
LCase ("BrEaD " + "AND " + "bUtTeR")
Returns "bread and butter".
Comments
Numbers that are part of the text are not affected by the LCase function.