Combining IF Formula for Blank/ Not Blank Cells
I want to create a formula that provides the below statuses:
-Complete: Based on "Collected Date" not null
-Incomplete: Based on "Collected Date" null and "Antcipated Collected Date" null
-Pending: Based on "Anticipated Collcted Date" not null and "Collected Date" null
Below is what I have, but it's unparseable:
=IF(NOT(ISBLANK([Recovery Collected Date]@row)), "Complete", "Incomplete"), IF(AND(NOT(ISBLANK([Anticipated Collection Date]@row), (ISBLANK([Recovery Collected Date]@row), "Pending"))))
Best Answer
-
Greetings @brownrobe,
Here is a possible solution for your formula:
=IF(NOT(ISBLANK([Recovery Collected Date]@row)), "Complete", IF(AND(ISBLANK([Recovery Collected Date]@row), ISBLANK([Anticipated Collection Date]@row)), "Incomplete", IF(AND(NOT(ISBLANK([Anticipated Collection Date]@row)), ISBLANK([Recovery Collected Date]@row)), "Pending", "")))
Please confirm I have your column names correct and adjust as needed.
I hope this helps, and have a great weekend.
Frank Smith, PMP
Assistant Director | IT Special Projects Mgr.
Oregon Parks & Recreation Department
If my response helps, please mark it as an accepted answer. 😎
Answers
-
Greetings @brownrobe,
Here is a possible solution for your formula:
=IF(NOT(ISBLANK([Recovery Collected Date]@row)), "Complete", IF(AND(ISBLANK([Recovery Collected Date]@row), ISBLANK([Anticipated Collection Date]@row)), "Incomplete", IF(AND(NOT(ISBLANK([Anticipated Collection Date]@row)), ISBLANK([Recovery Collected Date]@row)), "Pending", "")))
Please confirm I have your column names correct and adjust as needed.
I hope this helps, and have a great weekend.
Frank Smith, PMP
Assistant Director | IT Special Projects Mgr.
Oregon Parks & Recreation Department
If my response helps, please mark it as an accepted answer. 😎
-
It works! Thank you @Frank S.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.4K Get Help
- 447 Global Discussions
- 144 Industry Talk
- 479 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 490 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!