UpperCase Function
Description:
Convert all LOWERCASE letters in a text to UPPERCASE letters.
Returns:
Text
Parameter:
Parameter | Data Type | Description |
|---|---|---|
1 | Text | The text. |
Example:
When using functions inside a field, remember the field brackets:
{UpperCase(VariableName)}
This can also be applied using the Format keyword:
{VariableName Format Upper}
Expression | Result |
|---|---|
UpperCase( "111 ninth avenue,new york,usa" ) | "111 NINTH AVENUE,NEW YORK,USA" |