Skip to main content

I was wondering if there’s any script that allow me to check/ uncheck the box? I can only do one but I want to make a toggle checkbox.


This is the script for check only


let table = base.getTable("Product List");
let record = await input.recordAsync("Interest", table);
let recordId = record.id;
await table.updateRecordAsync(recordId, {
"Interest" : true,
})

Try getting the current value of that record’s checkbox field and just inverse it using !.


Something like this (untested code):


await table.updateRecordAsync(recordId, {
"Interest" : ! record.getCellValue("Interest"),
})

Try getting the current value of that record’s checkbox field and just inverse it using !.


Something like this (untested code):


await table.updateRecordAsync(recordId, {
"Interest" : ! record.getCellValue("Interest"),
})


Thank u so much. It works perfectly.


Reply