How to create multiple records with only 1 value

Hi, I am getting a value with “,” for example ES12345678, ES11441444. I want to create 2 records in this case with those 2 IDs, what can I do to do it? Since in the iterator I get “Value” as a response and the problem is that there are more values. 1 is with the identifications another with the kg… and I need to create several records with the values ​​that I get for “,”.

Split() will generate an array but you can only iterate one array at a time with the iterator. Here you’re trying to iterate 4 arrays and that won’t work.

It’s best to use the join() function to append the arrays after split() first to get one array and then you can iterate it.

You can use the “Set Multiple Variables” module, to set an array variable for each variable you want to split into an array.

Then, use the Iterator module to only iterate one of the array variables.

Hope this helps! Let me know if there are any further questions or issues.

@samliew


P.S.: Did you know, the concepts of about 70% of questions asked on this forum are already covered in the Make Academy. Investing some effort into it will save you lots of time and frustration using Make later!

1 Like

Thanks for answering, are you referring to this? If possible, you could accompany your answer with an image if it is possible and it is not a bother.


The problem is that there are more variables and the result of the iterator at the end is “Value”. I have these array and I want to create 2 records (in this case) in an airtable with those values


image