LOWER

Converts all uppercase letters in a text string to lowercase.

Syntax

LOWER(text)

Text   is the text you want to convert to lowercase. LOWER does not change characters in text that are not letters.

Examples

LOWER("E. E. Cummings") equals "e. e. cummings"

LOWER("Apt. 2B") equals "apt. 2b"

LOWER is similar to PROPER and UPPER. Also see examples for PROPER.