Help

[Solved] Clearing Single Select Field Value

Topic Labels: Scripting extentions
Solved
Jump to Solution
2266 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Chris_Guthrie
7 - App Architect
7 - App Architect

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

1 Solution

Accepted Solutions
Kamille_Parks
16 - Uranus
16 - Uranus
let table = base.getTable("Table 1")

let record = await input.recordAsync("Record", table)

await table.updateRecordAsync(record.id, {
    "Single Select": null
})

See Solution in Thread

2 Replies 2
Kamille_Parks
16 - Uranus
16 - Uranus
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