Text.Upper

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"