Hello,
I am trying to build a workflow in n8n where I can input a variable containing a comma-separated list of names. Here’s what I want to do:
- The workflow should take the list as an input variable.
- It should then retrieve the first name from the list and perform an HTTP request using that name.
- The HTTP request will return data, and the workflow should repeat this process for each name in the list.
- Finally, the data retrieved from all names should be concatenated and saved into a single Excel file.
I’m looking for guidance on how to loop through the list, handle the HTTP requests, and create the Excel file with the combined results.
Would appreciate any suggestions or tips on how to achieve this!
Thank you!