Cheat Sheets/Power Automate/toUpper / toLower
Power Automate (WDL) function

toUpper / toLowerPower Automate (WDL) function reference

Change case.

Syntax

wdl
toUpper(text) / toLower(text)

Examples

wdl
toUpper('po-12')
"PO-12"

A case-insensitive comparison pattern, since equals() itself is case-sensitive.

wdl
equals(toLower(item()?['Email']), toLower(variables('adminEmail')))
true / false

Capitalizes just the first letter.

wdl
concat(toUpper(substring(item()?['Name'], 0, 1)), toLower(substring(item()?['Name'], 1)))
"Powerstack" from "pOWERSTACK"

Common mistakes & gotchas

Related Workflow Definition Language functions

From Strings

Used in these tutorials

← Back to the Power Automate (WDL) cheat sheet