Cheat Sheets/Power Automate/take / skip
Power Automate (WDL) function

take / skipPower Automate (WDL) function reference

Slice from the start / past the start.

Syntax

wdl
take(collection, count) / skip(collection, count)

Examples

wdl
take(variables('rows'), 10)
First 10
wdl
skip(variables('rows'), 5)
Everything after the first 5 rows
wdl
take(skip(variables('rows'), 10), 10)
Rows 11 through 20 — a simple paging pattern

Common mistakes & gotchas

Related Workflow Definition Language functions

From Arrays & collections

Used in these tutorials

← Back to the Power Automate (WDL) cheat sheet