Use the uppercase helper to convert all lowercase letters in a given string or field to uppercase characters. This is useful for standardizing text fields (e.g., product categories, usernames) or ensuring uppercase output in flow data.
{{uppercase field}}
-
field: The text-based field or variable you want to transform (e.g.,
record.category).
-
Converting a literal string
{{uppercase "library"}}Produces
"LIBRARY". -
Using data from the record
The {{uppercase family.type}} is a member of the {{uppercase family.animal}} familyIf
family.typeis"dog"andfamily.animalis"canine", the output becomes:The DOG is a member of the CANINE family
-
Triple braces for raw output
{{{uppercase record.description}}}Returns the uppercase string without Celigo’s automatic formatting.
Tip
-
Non-alphabetic characters and uppercase letters remain unchanged.
-
If the field contains numbers or other symbols, they are unaffected.
-
If the field is empty or null,
uppercasereturns an empty string.