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.


