I made an workflow to extract emails for any sub areas for any given place.
After the execution of inner loop (loop over item1) for the first sub area , the data for the other sub area generated is being skipped by the inner loop.
I think since the whole loop of the loop over item1 node is marked as done the workflow is considering that it is done (from the first sub area completion) and for all the sub areas it isnt processing the data anymore into the inner nested loop coz it remains marked as done so the workflow only continues through the loop over item node / outer loop only
What is the error message (if any)?
There is no error message , the workflow is simply skipping all the data relayed into the inner loop after the first execution since its marked as done i guess
well there is the need of 2nd loop for the splitting and sending the array of email which are extracted and returned by the code1 node. If i try to put the whole array of email in a single cell of google sheet , it may miss out some email due to character limit of each cell so i thought its better to split them into single item ( each email) and using another loop to keep sending the emails into google sheet for all the queries generated . If you want me to explain the whole workflow i can explaining the function of each node in the same order as of the screenshot
Not seeing the actual data, Iām not convinced you need the 2nd loop. Each item in the set (aray) of items will be appended one by one without the Loop unless you do need to have Wait node in between to fight rate limit, for example.