You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Azure Logic Apps includes the following loop actions that you can use in your workflow:
16
16
17
-
* To repeat one or more actions on an array, add the [**For each** action](#foreach-loop) to your workflow.
17
+
* To repeat one or more actions on items in an array, add the [**For each** action](#foreach-loop) to your workflow.
18
18
19
19
Alternatively, if you have a trigger that receives an array and want to run an iteration for each array item, you can *debatch* that array with the [**SplitOn** trigger property](../logic-apps/logic-apps-workflow-actions-triggers.md#split-on-debatch).
20
20
@@ -32,7 +32,7 @@ Azure Logic Apps includes the following loop actions that you can use in your wo
32
32
33
33
## For each
34
34
35
-
The **For each** action repeats one or more actions on each array item and works only on arrays. The following list contains some considerations for when you want to use a **For each** action:
35
+
The **For each** action works only on arrays and repeats one or more actions on each item in an array. The following list contains some considerations for when you want to use a **For each** action:
36
36
37
37
* The **For each** action can process a limited number of array items. For this limit, see [Concurrency, looping, and debatching limits](../logic-apps/logic-apps-limits-and-config.md#looping-debatching-limits).
38
38
@@ -48,7 +48,7 @@ The **For each** action repeats one or more actions on each array item and works
48
48
49
49
The following example workflow sends a daily summary for a website RSS feed. The workflow uses a **For each** action that sends an email for each new item.
50
50
51
-
Follow the steps based on whether you create a Consumption or Standard logic app workflow.
51
+
Based on whether you have a Consumption or Standard workflow, follow the corresponding steps:
0 commit comments