Break large lists into smaller batches for controlled processing and better workflow management.
Field | Type | Required | Description |
---|---|---|---|
List to Split | List | Yes | The large list you want to break into batches |
Batch Size | Number | Yes | Number of items per batch (1-100) |
Output | Description |
---|---|
Batches | List of smaller lists, each containing the specified number of items |
What happens if my list doesn't divide evenly by the batch size?
How do I process the batches after splitting?
What's the optimal batch size for my workflow?
Can I split an already small list?
How is this different from Loop Over List alone?