Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
Text.Upper(text as nullable text, optional culture as nullable text) as nullable text
About
Returns the result of converting all characters in text
to uppercase. An optional culture
may also be provided (for example, "en-US").
Example 1
Get the uppercase version of "aBcD".
Usage
Text.Upper("aBcD")
Output
"ABCD"