Using a script, what is the syntax for clearing a value from an existing record in a single select field?
Page 1 / 1
let table = base.getTable("Table 1")
let record = await input.recordAsync("Record", table)
await table.updateRecordAsync(record.id, {
"Single Select": null
})
let table = base.getTable("Table 1")
let record = await input.recordAsync("Record", table)
await table.updateRecordAsync(record.id, {
"Single Select": null
})
Ahhh. Yes. I just figured it out too after playing with quite a few options. Thanks @Kamille_Parks
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.