Nov 03, 2020 09:50 AM
Using a script, what is the syntax for clearing a value from an existing record in a single select field?
Solved! Go to Solution.
Nov 03, 2020 09:59 AM
let table = base.getTable("Table 1")
let record = await input.recordAsync("Record", table)
await table.updateRecordAsync(record.id, {
"Single Select": null
})
Nov 03, 2020 09:59 AM
let table = base.getTable("Table 1")
let record = await input.recordAsync("Record", table)
await table.updateRecordAsync(record.id, {
"Single Select": null
})
Nov 03, 2020 10:00 AM
Ahhh. Yes. I just figured it out too after playing with quite a few options. Thanks @Kamille_Parks