Cheat Sheets/Power Automate/concat
Power Automate (WDL) function

concatPower Automate (WDL) function reference

Join strings together.

Syntax

wdl
concat(text1, text2, ...)

Examples

wdl
concat('PO-', variables('id'))
"PO-1042"
wdl
concat('Order #', string(triggerBody()?['orderId']), ' — ', triggerBody()?['status'])
"Order #1042 — Shipped"

A common pattern for building a unique, sortable file name.

wdl
concat(formatDateTime(utcNow(), 'yyyyMMdd'), '_', triggerBody()?['fileName'])
"20260707_invoice.pdf"

Common mistakes & gotchas

Related Workflow Definition Language functions

From Strings

Used in these tutorials

← Back to the Power Automate (WDL) cheat sheet