> For the complete documentation index, see [llms.txt](https://docs.zerowork.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zerowork.io/using-zerowork/using-building-blocks/start-repeat.md).

# Start Repeat

This is how you can set up a loop to either iterate over rows in your table, save a list of scraped data or repeat some other actions.

### Start and End of the Loop

Loop starts right after *Start Repeat* building block. This means all building blocks that follow *Start Repeat* will repeat for the number of loop iterations.

Loop ends with the last building block.

<figure><img src="/files/7r9NeufOsE4w5pB24Mze" alt=""><figcaption></figcaption></figure>

If you want to make your TaskBot do some actions **after** the loop end, use the building block [After Repeat](/using-zerowork/using-building-blocks/after-repeat.md).

### Loop Types

There are two loop types. Standard loop saves new data by appending new rows to your table. Dynamic loop iterates over existing rows in your table.

More details and examples here:&#x20;

* [Standard Loop](/using-zerowork/using-building-blocks/start-repeat/standard-loop.md)
* [Dynamic Loop](/using-zerowork/using-building-blocks/start-repeat/dynamic-loop.md)

### Options

Your TaskBot can continue where it left off in the previous run. Learn more about it here:

* [Auto-Continue from Last Row or Element](/using-zerowork/using-building-blocks/start-repeat/auto-continue-from-last-row-or-element.md)

In a standard loop type, your TaskBot can auto-detect the number of elements in a given list. Learn more about it here:

* [Continue until No Element Is Found](/using-zerowork/using-building-blocks/start-repeat/continue-until-no-element-is-found.md)

### Nested Loops

Nested loops are primarily used to paginate through results. Learn more about it here:

* [Nested Loops - Handle Pagination](/using-zerowork/using-building-blocks/start-repeat/nested-loops-handle-pagination.md)
