Maybe I’m missing something, but it sounds like all you need is a LookUp Field. Add a lookup field to Table 2, selecting the “price” field from Table 1 as the data source. Does that help?
Hello @BenInDallas, it is Casimir (i’am on my collegue laptop).
Thanks for the reply,
I do use the LookUp fields but you can’t copy and paste in the cell all the ids I wan’t to link (around 100 for each).
The only way to do it, is by clicking the + button and select them one by one

The lookUp fields work perfectly but I cant be ask to clic on this button over 5000 times to set up all of them which would take forever.
I have been checking with the api, I found a way to do what i wanted but as the api is limited to 5 request per second it would also take quite some time.
I would be so much easier if you could select multiple entries or a group or a filter when you clic on the + sign.
Hello @BenInDallas, it is Casimir (i’am on my collegue laptop).
Thanks for the reply,
I do use the LookUp fields but you can’t copy and paste in the cell all the ids I wan’t to link (around 100 for each).
The only way to do it, is by clicking the + button and select them one by one

The lookUp fields work perfectly but I cant be ask to clic on this button over 5000 times to set up all of them which would take forever.
I have been checking with the api, I found a way to do what i wanted but as the api is limited to 5 request per second it would also take quite some time.
I would be so much easier if you could select multiple entries or a group or a filter when you clic on the + sign.
Hello again, after a good night of sleep I found out a way to do it with the api so I don’t have to clic 5000 times #hurrah
I put my little code just below for people in the future facing the same problem,
You just have to pass all ids in an array to the link field and it will work.
base(`your_base`).update('Id_of_LinkedField', {
"Name_of_RollupField": ["id1",
"id2",
"id3",
"id4",
"id...."
],
"updated": moment()
}, function(err, record) {
if (err) { console.error(err); return; }
console.log('yo it worked yeah!!!');
});
Hey Malo,
I am having the same exact uber frustration trying to connect multiple ‘sku’ to a single order number in a second base. If this code works out that would be an enormous time saver for me :slightly_smiling_face: I was just wondering where exactly would you put such a code because I couldn’t see a script functionality or VBA like feature in airtable?
Any help on elaborating your solve would be so appreciated!
Hi @Sage_Schlebach
You might want to put this symbol in front of Malo @, so that they will get your reply directly.
Mary K