LOWER function
LOWER(Text) LOWER(Text)
Text
Text or { Text }
The text string whose upper-case characters should be replaced by equivalent lower-case characters.
Returns
Text or { Text }
A version of the given text string with all upper-case characters replaced by equivalent lower-case characters.
Converts all upper-case letters in a text string to lower-case letters and returns the converted string.
Examples
LOWER("ABc")LOWER("ABc")
Returns "abc".