Multiple IF statements with dates
I have two columns with dates (start date and completion date) I am looking to add a formula to a third column status. The status column ideally would have the following
Blank if there is no start date
In Progress if there is a start date
Completed if there is a completion date.
Any help would be much appreciated.
Best Answer
-
If I understand correctly, this should work.
=IF(ISDATE([Completion Date]@row), "Completed", IF(ISDATE([Start Date]@row), "In Progress", ""))
Answers
-
If I understand correctly, this should work.
=IF(ISDATE([Completion Date]@row), "Completed", IF(ISDATE([Start Date]@row), "In Progress", ""))
-
Thanks CARSON!! I literally just figured it out more or less the same way, see below. Both work perfectly.
=IF(ISDATE([Completion date]@row), "Completed", IF(ISBLANK([Start date]@row), "", "In Progress"))
Help Article Resources
Categories
Check out the Formula Handbook template!