Sign in to join the conversation:
I am trying to get a check box to automatically check itself when a range of other check boxes are checked off, I have tried a few formulas with no luck, below is my latest formula
=IF([Sand 1]294:[Sand 1]310 = 1), 1)
I think you can get your desired functionality using the COUNTIF function combined with an IF-statement. If you wanted to mark a box if 7 specific checkboxes are all checked, then you might write something like this:
=IF(COUNTIF([Checkbox Column 1]1:[Checkbox Column 1]7,1)=7,1,0)
Basically the formula says:
I hope that works for you!
Works great, thanks for your help...