UPPER Function

Converts a string to uppercase.

Category: String
Returned data type: String

Syntax

UPPER(source)

Required Argument

source

a string; this can be specified as a string constant, field name, or expression

Example

source = "MÜNCHEN in Germany"

upcase_string = upper(source) // outputs "MÜNCHEN IN GERMANY"