How do I add data from separate bundles (output from Parse JSON) into different fields in an Airtable record?
Sounds simple, but driving me mad, lol.
Any help very much appreciated.
Thanks!
How do I add data from separate bundles (output from Parse JSON) into different fields in an Airtable record?
Sounds simple, but driving me mad, lol.
Any help very much appreciated.
Thanks!
Hello @NigelB,
Use Case 1:
The first thing is if there are possibility then combine your all previous element output(Before parseJSON) into a single json array and then parse it. Which returns a single bundle with an array within it.
Then you can directly use the get()
and map()
functions to get your exact data from the array.
Use Case 2:
If use case 1 is not possible then use an Array Aggregator after your parseJSON Module.
Which returns all bundles in a single array.
Then you can directly use the get()
and map()
functions to get your exact data from the array.
Also, check specific courses about how to use get and map functions with the array. Using get() and map() functions
Also, see my last 2 answers which look like the same type of concept.
P.S.: Always search first, Check Make Academy. If this is helpful, mark it as a solution and
Need expert help or have questions? Contact or comment below!
Many thanks dilipborad.
I used an array aggregator & get() and all looking good!
Hello @NigelB,
If this helps to you then please complete this topic with
That’s also helps others who has same problem like this.