UPPER
Converts text to uppercase letters.
Syntax
upper(value:string)Arguments
Example
upper('south zone')
//Returns “SOUTH ZONE"
Excel equivalent

Last updated
Was this helpful?
Converts text to uppercase letters.
The UPPER function converts a text string into uppercase. Node references are also accepted as arguments. It is commonly used to standardize text data for comparison, formatting, or consistency.
upper(value:string)value - A text string. Required.
upper('south zone')
//Returns “SOUTH ZONE"

Last updated
Was this helpful?
Was this helpful?