toupper

Converts the input text to uppercase.

Function

result = toupper(condition)

Arguments

ArgumentData Type
inputany
resultany

Comments

Text values should not be converted to upper or lower case for the sole purpose of comparing values in a case-insensitive manner as this can reduce performance and text comparisons are automatically case insensitive.

Examples

result = toupper('Falcon Heavy') /* 'FALCON HEAVY' */