🔁Loop

🔁 The Loop block repeats its inner blocks over a list, for a fixed number of times, or while a condition is true.

Loop types

  • For each: Run once for every item in an array.
  • Fixed count: Repeat N times.
  • While: Continue until a stop condition is met.

Uses

  • Process every item in a list, such as orders, rows, or passages.

⏳ Be careful with large lists: a run may reach its time limit. Split the work or use Parallel.