Trying to combine AND and OR into one IF statement
Hello,
I’m trying to combine an IF statement with AND and OR statements. The logic is to check if a date column is TODAY() and IF at least one of 10 columns is blank, then check a box.
I’ve tried multiple scenarios but can’t get it to work. The latest I have is:
=IF(OR(ISBLANK([Email]@row), ISBLANK([Street Address]@row), ISBLANK([City]@row), ISBLANK([State]@row), ISBLANK([Zip Code]@row), ISBLANK([Email Address]@row), ISBLANK([Telephone Number]@row), ISBLANK([Standard Hardware]@row), ISBLANK([Computer Hardware]@row), ISBLANK([Laptop Bag]@row),IF(AND([Reminder Calculated Date]@row = TODAY()), 1).
Any help would be greatly appreciated. Thanks.
Best Answers
-
You'll need to put the AND function at the front of the formula.
=IF(AND(OR(ISBLANK([Email]@row), ISBLANK([Street Address]@row), ISBLANK([City]@row), ISBLANK([State]@row), ISBLANK([Zip Code]@row), ISBLANK([Email Address]@row), ISBLANK([Telephone Number]@row), ISBLANK([Standard Hardware]@row), ISBLANK([Computer Hardware]@row), ISBLANK([Laptop Bag]@row)), [Reminder Calculated Date]@row = TODAY()), [True], [False])
-
Thank you so much! It worked perfectly!
Answers
-
You'll need to put the AND function at the front of the formula.
=IF(AND(OR(ISBLANK([Email]@row), ISBLANK([Street Address]@row), ISBLANK([City]@row), ISBLANK([State]@row), ISBLANK([Zip Code]@row), ISBLANK([Email Address]@row), ISBLANK([Telephone Number]@row), ISBLANK([Standard Hardware]@row), ISBLANK([Computer Hardware]@row), ISBLANK([Laptop Bag]@row)), [Reminder Calculated Date]@row = TODAY()), [True], [False])
-
Thank you so much! It worked perfectly!
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
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!