/3 min read
Using Functions to Control Case
Case Functions
UPPER()
Converts to ALL CAPS. UPPER("hello") returns "HELLO".
LOWER()
Converts to all lowercase. Useful before comparing strings.
PROPER()
Capitalizes the first letter of each word — title case for names.
Combine with TRIM
TRIM(PROPER(A1)) cleans whitespace and fixes case in one step.
Master Excel at Noble Desktop
Noble Desktop's Excel Bootcamp covers formulas, pivot tables, data analysis, and VBA.
Learn how to use Functions to control Case