The UPPER function returns a string value that is entirely uppercase, regardless of the case of the characters in the specified string value.
UPPER(source-string)
source-string: Any value. However, only string values are affected by the function.
Examples |
|---|
=UPPER(“a b c”) returns “A B C”. =UPPER(“First”) returns “FIRST”. =UPPER(60) returns “60”. |