Function Reference: LOWER, PROPER, UPPER

Syntax
=LOWER(text)
=PROPER(text)
=UPPER(text)
Purpose / Description
Each of these functions returns a text string in which all the characters from the original string have been converted to a new case — all lower case (LOWER), all upper case (UPPER), all lower case, except for the first letter of each word which is in upper case (PROPER)
Arguments
Name Type Description
text text string A constant, reference or nested expression that provides the original text whose case is to be converted.
Return Values
Type Specific Value Description
text string   The converted text string, in which the characters have been converted based on the rule for the selected function.
error   Any errors referenced by arguments are returned due to propagation of error values.
Notes / Comments / Advice / Warnings
Note: As all values types, except errors, can be coerced to test strings, all values passed in are coerced to text string if required, before the case conversion is carried-out.
Examples: Open / download sample workbook: LOWER, PROPER, UPPER.xlsx