Skip to main content
Solved

[Solved] Clearing Single Select Field Value

  • November 3, 2020
  • 2 replies
  • 66 views

Forum|alt.badge.img+12

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

Best answer by Kamille_Parks11

let table = base.getTable("Table 1")

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

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

2 replies

Kamille_Parks11
Forum|alt.badge.img+27
  • Brainy
  • 2679 replies
  • Answer
  • November 3, 2020
let table = base.getTable("Table 1")

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

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

Forum|alt.badge.img+12
  • Author
  • Inspiring
  • 47 replies
  • November 3, 2020
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