Apr 14, 2020 08:14 AM
Hey Guys
I need to add to a linked record with integromat. At the moment I can replace the array with the new record but cant work out how to add to the array.
Thanks in advance
Apr 14, 2020 10:03 AM
Hello @RIck_Allen,
There are 2 ways:
I hope this helps,
Cor
Apr 14, 2020 02:50 PM
When I use the update module on the linked record and pass a new recId it just replaces what was in the record with the new recId.
Jan 24, 2022 12:12 AM
I am still really new to Airtable but i did spend many hours checking out this awesome community here and learned alot, and i came across this same issue which i needed to be solved. i figured out a way that works for me in Integromat specifically for this issue, but may not be the most elegant.
‘Watch Records’ is basically a prefilled form response which is received in an updates table. the info i needed to add to is a linked field.
‘Get a Record’ is the Record ID of where i want to ADD on my linked items in and also to extract what i need in the field i want to add on to.
Set Variable - i just called it ‘name’ where i use
split ( [Array_A from Watch Records] , [Array B from Get a Record] ; ,)
Update a Record - is where i use the [Values] generated from Set Variable, added back to [Array A] .
Hope this helps anyone facing the same issue.
(its like copying out array A, get array B, then add it up as array C back in the space of array A.)