I’m attempting to transition from make.com to N8N. They’re similar platforms, so I haven’t encountered many issues replicating my scenarios in N8N. However, one feature I’m missing is the Iterator from make.com.
Hi @Dal, I may need more information here, but the Airtable node already handles iterating. If you pass an array with multiple objects into the node, it will run through them sequentially.
You can see from the training course for level one that an example is posting data from an HTTP request to Airtable. The workflow passes 30 items from the request to the node.
If you have more data transformations to perform, you may need to use the Loop Over Items Node
If this is not helpful, can you provide more information on what you need to do to the data?
I hope I explained it well, so that’s the reason I wanted an iterator like on Make, because I have to tell N8N that it’s an array and it has to go through all the elements until nothing is left.
Like this:
An Airtable formula used to filter records. The formula will be evaluated for each record, and if the result is not 0 , false , "" , NaN , [] , or #Error! the record will be included in the response. You can find more information about the formula on Airtable’s website.
For example, to only include records where Name isn’t empty, pass in: NOT({Name} = '')