Description
UCase converts the given string to all upper case and returns it.
Action
UCase converts the given string to all upper case and returns it.
Typical use
A good use of this function is when a field contains both uppercase and lowercase letters and you want to convert all letters to uppercase for consistency.
Examples
UCase("Description")Returns "DESCRIPTION".
UCase({customer.FIRST NAME})Returns "RONALD", where {customer.FIRST NAME} contains "Ronald".
UCase("Ronald Black")Returns "RONALD BLACK".
UCase("abc12345")Returns "ABC12345".
UCase("BrEaD " + "AND " + "bUtTeR")Returns "BREAD AND BUTTER".