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
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!