Save the date! Join us on October 16 for our Product Ops launch event. Register here.
Jan 17, 2023 06:10 AM
Hello,
I am setting up a record to duplicate a record (but only certain fields) in a base by taking input variables and then creating a new record and inputting these into the new record as such
let recordIdNew = await table.createRecordAsync({
"DateTest": StartDate,
"SingleLineText": SingleLineText,
"PhoneNumberTest": PhoneNumberTest,
"CheckBoxTest": CheckBoxTest,
"LongTextTest": LongTextTest,
"EmailTest": EmailTest,
"SingleSelectTest": {name: SingleSelectTest},
});
I have managed to achieve this with all the required data formats but I’m really struggling with Multiple Select. I am able to pull the data from the original records field and it shows in the console as follows
CONSOLE.LOG
The issue is, I don’t know how to add it to the new record (like I am able to do with all of the other data types)
I have had a look at the write data format but it doesn’t really make any sense to me at this early stage of my AirTable career.
TYPEDEF
Array<{id: string} | {name: string}>
I think I need to map this to a new object in the following format which I have done
CONSOLE.LOG
Any advice would be greatly appreciated.
Solved! Go to Solution.
Jan 17, 2023 06:33 AM
If you're doing a `getCellValue` to grab the options in the multiple select field, you should end up with an array of objects, each one representing a multiple select option, and it should have a "name" value
When inserting values into a multiple select field, the format's `[{name: **NAME OF OPTION**}]`, and if there's multiples it'll be `[{name: **NAME OF OPTION**}, {name: **NAME OF OPTION**}]`
And so you'll just need to loop through that array of multiple select options, and do an `array.push({name: selectOption.name})` or some such
Here's some code to get you going, and a link to a base where it's set up as an extension
let table = base.getTable('Table 1')
let record = await table.selectRecordAsync('recTF42yVfDDwGlWl')
let values = record.getCellValue('Multiple Select Field')
let options = new Array
for (let value of values){
options.push({name: value.name})
}
await table.createRecordAsync({
"Multiple Select Field": options
})
Jan 17, 2023 06:33 AM
If you're doing a `getCellValue` to grab the options in the multiple select field, you should end up with an array of objects, each one representing a multiple select option, and it should have a "name" value
When inserting values into a multiple select field, the format's `[{name: **NAME OF OPTION**}]`, and if there's multiples it'll be `[{name: **NAME OF OPTION**}, {name: **NAME OF OPTION**}]`
And so you'll just need to loop through that array of multiple select options, and do an `array.push({name: selectOption.name})` or some such
Here's some code to get you going, and a link to a base where it's set up as an extension
let table = base.getTable('Table 1')
let record = await table.selectRecordAsync('recTF42yVfDDwGlWl')
let values = record.getCellValue('Multiple Select Field')
let options = new Array
for (let value of values){
options.push({name: value.name})
}
await table.createRecordAsync({
"Multiple Select Field": options
})
Jan 17, 2023 01:35 PM
Another thing to note with Single and Multiselect fields and scripting within either Script Extension App, or an Automation Scripting Action (both are very similar) - is there's a limitation that prevents the adding of new selection options to either Single Select or Multilple Select fields - which is super frustrating.
It means that, if you're writing scripts to interact with these fields, then the fields will have to be pre-fileld with all the expected values that will be available to records for the scripts to then use. If you try pushing a value that hasn't been prefilled, you'll get an error.
I am hoping Airtable address this limitation this year - but I haven't read into the limitation, or put too much thought to as to why it's a limitation to begin with, as perhaps there's a logical reason.
Jan 17, 2023 03:05 PM - edited Jan 17, 2023 03:14 PM
Hi,
Maybe I misunderstood something, but I've added new SingleSelect options without any problems.I did it several times and last was yesterday. You can't remove choices by script unless you pass parameter {enableSelectFieldChoiceDeletion: true} , so you have to append new value(s) to existing value(s).
existing value (i mean field options) is array of objects having three parameters: {name: Xxxxx, color: lightGreen, id: 3u7DacNf}
as you can see, you need to pass id and/or name to identify your choice for cell, or you need to pass name and color to copy choices for field options, and their color schema.
that's how I copy names and colors of single select from one table to another (the linter is shining red with that code, but it's working):
const [T1,F1,T2,F2]=['Table1','Field1','Table2','Field2'];
const id_out=({id,...rest})=>({...rest})
await base.getTable(T2).getField(F2).updateOptionsAsync({'choices':
[...base.getTable(T2).getField(F2).options.choices,...(base.getTable(T1).
getField(F1).options.choices.map(id_out))]});
Jan 17, 2023 08:15 PM
Ahh, yes, I may be wrong in that the limitation that I'm thinking of might strictly be within the Automation Scripting environment.
Jan 17, 2023 10:44 PM
That worked perfectly, and instead of using the input variables for the rest i have have changed them all to getCellValue too.
Jan 17, 2023 10:45 PM
Yes, i tried something like this in and it threw an error saying it wasnt available in automation mode.
Jan 17, 2023 10:46 PM
As i am duplicating an existing record, i wont need to add new ones thankfully. Thanks for your reply!
Jan 17, 2023 10:51 PM
Could you do me a favour, and ask Airtable support to add this feature to Automation scripting? 😂
Jan 18, 2023 01:14 AM
Heh yeah I hit this issue you're talking about in an automation script too
I think I ended up doing some crazy thing with an API call to the same base to create a record with the new select option values (which works, because it's the API I guess), and then deleting that record right after hah