Among the text functions group, text case conversion functions are quite essential and commonly used for text and string manipulation.
This article introduces three text case conversion functions: LOWER(), UPPER(), and PROPER().
1. LOWER.
Description
The LOWER() function converts all characters in a text string to lowercase, aiding in text formatting.
Syntax
=LOWER(text)
Regarding:
text represents the text string you want to convert to lowercase. Text can be a reference to a text string or a text string itself.
Example
2. UPPER.
Description
The UPPER() function helps you convert all characters in a text string to uppercase.
Syntax
=UPPER(text)
Regarding:
text is the text string you want to convert all characters to uppercase. Text can be either a reference to a string or a string itself.
Example
3. PROPER.
Description
The PROPER() function capitalizes the first letter in a text string if it follows a non-letter character (e.g., space) and converts all other letters to lowercase.
Syntax
=PROPER(text)
Regarding:
text is the text string requiring the first letter to be capitalized and is a mandatory parameter. text can be a text string, a formula returning text, or a reference to a cell containing the text string needing the initial letter to be capitalized.
Example
So, when encountering situations where you need to convert text case according to a specific style, you can quickly apply these conversion functions accordingly. Wishing you success!