Converts lowercase characters in a text string to uppercase
Syntax
UPPER(text)
- text—The string to convert to uppercase
Sample usage
UPPER("hello world!")
Examples
This example references the following sheet information:
Clothing Item | Transaction Total | Units Sold | In Stock? | |
---|---|---|---|---|
1 | Clothing Item T-Shirt | Transaction Total 1,170.00 | Units Sold 78 | In Stock? true |
2 | Clothing Item Pants | Transaction Total 1,491.00 | Units Sold 42 | In Stock? false |
3 | Clothing Item Jacket | Transaction Total 812.00 | Units Sold 217 | In Stock? true |
Based on the table above, here are some examples of using UPPER in a sheet:
Formula | Description | Result |
---|---|---|
Formula =UPPER([Clothing Item]1) | Description Converts lowercase characters in row 1 of the Clothing Item column to uppercase | Result T-SHIRT |
Formula =UPPER("welcome to Smartsheet") | Description Converts lowercase characters in the text string welcome to Smartsheet to uppercase | Result WELCOME TO SMARTSHEET |
Formula =IF([In Stock?]3 = false, UPPER([Clothing Item]3), [Clothing Item]3) | Description Converts lowercase characters in row 1 of the Clothing Item column to uppercase if the value in row 3 of the In Stock column is equal to false. Otherwise, the function returns the original string | Result Jacket |
Still need help?
Use the Formula Handbook template to find more support, resources, view 100+ formulas, a glossary of every function that you can practice working with in real time, and examples of commonly used and advanced formulas.
Find examples of how other Smartsheet customers use this function or ask about your specific use case in the Smartsheet online Community.