I have a column called "Envelope Status" for tracking SS generated DocuSign docs. I also have a column that is a checkbox and for that column, I'd like to write a formula so when the status is certain values it is checked and stays checked.
The possibilities for "Envelope Status" are:
Blank (meaning nothing is in the column)
Draft
Sent
Delivered
Declined
Voided
Completed
My question is, do I write the formula so it checks and stays checked if it's Sent, Delivered, Declined, Voided or Completed, and if so, how many values can be in an OR function? The following formula works for two, but when I try to add more values it does not. And the box stays checked if I delete a value it had, meaning it won't uncheck with I make the cell blank.
=IF(OR([Envelope Status]@row = "Sent", [Envelope Status]@row = "Delivered"), 1, 0)
Or, do I write the formula using a NOT function, thus saying, check the box if it is NOT blank or Draft and if so, what is the format of the formula? My attempts with IF(NOT) only work with one value.
Thanks