Simple IF THEN logic has me stumped.

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
Check out the Formula Handbook template!