LOWERCASE
The LOWERCASE function converts an alphabetic text item to all lowercase characters.
- Syntax:
- LOWERCASE (single-text-expression)
- Meaning:
- LOWERCASE (text_to_convert)
- Returns:
- A single text item
LOWERCASE produces a text item in which each byte from the input has been converted to lowercase. Any numeric or symbol characters in the text item remain unchanged.
Examples
- LOWERCASE ("A1b2C!")
Returns: a1b2c!
Related functions
- ISLOWER
- ISUPPER
- UPPERCASE