8. How can you loop through a list of items in Power Automate?

In Power Automate, you can loop through a list of items using the Apply to each control. This control iterates over each item in an array list. Within Apply to each you can add action on each item.

Let’s have an example

You have a SharePoint list of student names.
β€’ Get items β†’ fetches all students.
β€’ Apply to each β†’ goes through each name one by one.
β€’ Inside the loop, add an action (like Compose) and pick the Title field.

You can fetch the title with below formula

item()?['Title'] 

If your list has Amit, Priya, John β†’ the flow will run 3 times:

β€’ First: Amit
β€’ Second: Priya
β€’ Third: John

πŸ‘‰ in short: Apply to each = process every item in your list, one at a time.

Leave a Reply

Your email address will not be published. Required fields are marked *

Scroll to Top