See Also: String Functions, Lowercase
To return a string made up of the input string with all the letters capitalized.
(Uppercase( {string-value} ))
Uppercase capitalizes all letters in {string-value}, leaving other characters unchanged.
String sLastname
Move "Smith" to sLastname
Move (Uppercase(sLastname)) To sLastname
This example would change the value of the variable sLastname from "Smith" to "SMITH"
If {string-value} is of type other than string, its value will be converted to a string for output.