Split In Batches + Item Lists not generating enough items?

I’ve got 2 items with a list of values in each.
In the end, I need to have 10 items in my workflow and need to perform a set node for each of the 10 items.

Somehow, in the loop there are 10 items on the connector.
But the set only has 2 items.


How can I have 10 executions for set?

  • n8n version: 0.182.0
  • Database you’re using (default: SQLite): SQLite
  • Running n8n with the execution process [own(default), main]: main
  • Running n8n via [Docker, npm, n8n.cloud, desktop app]: Docker

Hey @Chris7935,

The 2 at the bottom is the run count so it is saying that the node ran twice rather than once (once for each item split from split in batches). If you add a NoOp or another node after the set you should see that it passes 10 items out.

You’re right indeed, thanks - got confused by the displayed values.

1 Like