UpperCase
The UpperCase function converts all characters in a string to uppercase.
Definition
UpperCase(texto)Parameters
| Name | Description | Data type |
|---|---|---|
| texto | Text to convert to uppercase | string |
Example
The following example converts the word 'password' to uppercase.
UpperCase('password')The result is 'PASSWORD' (string).
Other uses
In the following example, the value 1 should be returned if the provided text matches the text 'temperatura', regardless of whether it is written in uppercase, lowercase, or a mix of both. This can be done by converting the text to uppercase:
If(UpperCase('tempErAtura') = 'TEMPERATURA', 1, 0)The result is 1 (numeric value).