UPPER
Converts text to uppercase letters.
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('INFORiver')
//Returns “INFORIVER".
Last updated
Was this helpful?
Was this helpful?