Items in Power Automate
Meaning of items() in Power Automate
In Power Automate,
items() is a function that represents the current item being processed inside a loop, such as an Apply to each action.
Think of it like this π
If you have a list of rows and Power Automate loops through them one by one —
items() refers to the single row currently being processed.
π§© Example
Suppose:
Your “List rows” (List_rows_1) returns:
You then add an Apply to each action:
Inside this loop:
-
On the first iteration,
items()= -
On the second iteration,
items()=
π― Using items() Inside the Loop
| You Want | Expression |
|---|---|
| Full Name | items('Apply_to_each')?['fullname'] |
items('Apply_to_each')?['emailaddress1'] |
If your loop name is something else (say Apply_to_each_2), use:
π§ Analogy
You can think of it like:
So items() = the current record being processed in the loop.
Comments
Post a Comment