If/Or statement for check boxes do nothing or .. do this...

I am trying to add to a current formula that is looking for empty columns BUT if either another set of 2 columns are checked, do nothing. I tried getting it right with just one "if" statement and I can't get it to work.
If "Line Down.." or "Spot Check" is checked, do nothing otherwise - and then the formula works.
IF([Line Down or Strip Break]@row =1,""), (IF(AND([1421 COATING WEIGHTS]@row = "", [1402 CTG WEIGHT Top North]@row = ""), 1, 0))))
Best Answer
-
Try this:
=IF(OR([Line Down or Strip Break]@row =1, [Spot- Check]@row = 1),"", IF(AND([1421 COATING WEIGHTS]@row = "", [1402 CTG WEIGHT Top North]@row = ""), 1))
Answers
-
Try this:
=IF(OR([Line Down or Strip Break]@row =1, [Spot- Check]@row = 1),"", IF(AND([1421 COATING WEIGHTS]@row = "", [1402 CTG WEIGHT Top North]@row = ""), 1))
-
PERFECT! It's always right under my nose! You're the best!!
Help Article Resources
Categories
Check out the Formula Handbook template!