LOWER function
The LOWER function in Excel is used to convert all letters in a text string to lowercase. It does not affect numbers, symbols, or punctuation marks.
Syntax:
=LOWER(text)
Parameters:
- text (required): The text string or cell reference that you want to convert to lowercase.
Key Points:
- All letters in the text string will be converted to lowercase.
- Non-letter characters (numbers, punctuation, and special symbols) remain unchanged.
- The result is a text value in lowercase.
Example Usage:
1. Converting Text to Lowercase
If cell A1 contains the text “Hello World”, the formula:
=LOWER(A1)
This will return:
hello world
All characters are converted to lowercase.
2. Direct Text Input
If you want to convert a specific string to lowercase, you can input the text directly:
=LOWER("EXCEL FUNCTIONS")
This will return:
excel functions
3. Working with Mixed Case Text
If cell A2 contains “MiXeD CaSe TeXT”, the formula:
=LOWER(A2)
This will return:
mixed case text
The entire string is converted to lowercase, regardless of its original case.
Notes:
- Text formatting:
LOWERonly affects the letter case of the text. The formatting (such as bold, italics, or font size) remains unchanged. - Empty Text: If the text is empty (a blank cell or an empty string “”), the result will also be an empty string.
Related Functions:
UPPER: Converts all letters in a text string to uppercase.PROPER: Converts the first letter of each word in a text string to uppercase, and the rest to lowercase.TRIM: Removes extra spaces from a text string, but does not change letter case.
The LOWER function is helpful when you need to normalize text or ensure consistency in case, especially when comparing or formatting data.