Jun 20, 2019 01:19 PM
I’m trying to create a task list utilizing checkboxes, and I’d like that to automatically updated a field named “Status”.
For example if a new record is created and no checkboxes are checked off, the status should be “New”. If the final payment column is checked, the status should change to “Paid”, etc.
Jun 20, 2019 02:06 PM
Hi @Beth_Taylor - how about this (simple version)?
Status is a formula of:
IF({Payment made?}, 'Paid', 'New')
I’m saying “simple version” because it sounds like you have more than one checkbox, but this shows the principle. With more checkboxes, you might use a nested IF()
formula to get the status you want.
JB
Jun 20, 2019 03:27 PM
Thanks, JB! I think this is what I need, though I’ll have to adjust it to a nested IF formula. (ugh)