The UPPER function in Google Sheets is a useful tool designed to convert all characters in a specified text string to uppercase. This function enhances the readability of your data and maintains consistency when formatting text entries, making it particularly beneficial for preparing reports, labels, or any other instances where uniform capitalization is desired.
Syntax
UPPER(text)
- text: The string or cell reference that you want to convert to uppercase.
Example #1
UPPER("hello world")
This function takes the string “hello world” and converts it into uppercase, resulting in “HELLO WORLD”.
Example #2
UPPER(A1)
If cell A1 contains the text “Google Sheets”, this function will convert that text to uppercase, yielding “GOOGLE SHEETS”.
Example #3
UPPER("data analysis")
This function changes the string “data analysis” to uppercase, resulting in “DATA ANALYSIS.”
Error handling
- VALUE!: This error occurs when the input is not a valid string or reference. Ensure the argument is text or a cell reference containing text.
- NAME?: This indicates that Google Sheets does not recognize the UPPER function, possibly due to a spelling mistake. Check the function name for correctness.