Skip to main content

Using a script, what is the syntax for clearing a value from an existing record in a single select field?

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