upper
To output a string in the upper case
This function converts lowercase characters in a text to uppercase. Other characters stay untouched.
This can be useful for comparing strings or for correction of misspellings, for example in names, labels, or for temporarily unifying text for further processing.
upper(string)
string
1
upper("upPer")
Result: UPPER
1
contains(upper("With Ninox you can build great databases"), upper("database"))
Result: Yes (
true
)Last modified 1yr ago