Create a button to uncheck

Hey there, I’m trying to create a button to uncheck all checked checkboxes in a column associated with a todo list. Any ideas?

Thanks!

1 Like

You can create a button to Modify Rows. The Filter would be if ColumnCheckbox=True.

Glad to have you here @Matthias_Morel

you can put a button and then have following formula to uncheck all checkboxes

ToDos.Filter(Completed).ModifyRows(Completed, false)

in above formula, ToDos is the name of the table and Completed is a column with checkboxes.

hmmm, can’t get it to work. This is my crack at it:

From what I can see, the value of a checked box is either true or false. Sorry complete newbie here. Thanks!

Please try with above formula. ToDos is a table name so in your case it would be Template CheckList and completed is a column name so in your case it would be Status

  1. Click the orange plus sign to create a button (Give it a nice name!)

  2. Click the Function button under the ACTION header (the white ƒ):
    image

  3. Paste in this formula: [Template Checklist].Filter(Status).ModifyRows(Status, false)

  4. Click the button!
    image

2 Likes

Brilliant!
Thanks…