Simple IF THEN logic has me stumped.
Rebecca Menning
✭✭✭
Trying to automate a status for the baseline audit status:
If Baseline Audit Date Complete is not blank - Then complete
If Baseline Audit Start Date is not blank and Complete is blank - Then in progress
If Baseline Audit Start Date is blank - Then not started
Best Answer
-
I used the ISDATE function instead of the ISBLANK function.
[Status] =IF(ISDATE([Baseline Audit Date Complete]@row), "Complete", IF(ISDATE([Baseline Audit Start Date]@row), "In Progress", "Not Started"))
Answers
-
I used the ISDATE function instead of the ISBLANK function.
[Status] =IF(ISDATE([Baseline Audit Date Complete]@row), "Complete", IF(ISDATE([Baseline Audit Start Date]@row), "In Progress", "Not Started"))
-
Perfect. Thank you very much.
-
Happy to help!😁
-
This content has been removed.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!