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!!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!