Calculating Days Between Estimated and Actual Start Dates (including projects which haven't started)
Hi!
I've got a project tracking sheet that has the following columns:
Estimated Start Date
Actual Start Date
I need to calculate how long a project has been waiting to start. Some projects don't have an actual start date, though. So the formula needs to know that blank dates in the actual start column should be counted as "TODAY."
Any ideas on how to get this calculation done?
THANKS!
-Hannah
Answers
-
To use the [Actual Start] if it is a date and TODAY() if it is not, you would use a basic IF statement.
=IF(ISDATE([Actual Start]@row), [Actual Start]@row, TODAY())
Then you would just subtract the [Estimated Start] from that.
=IF(ISDATE([Actual Start]@row), [Actual Start]@row, TODAY()) - [Estimated Start]@row
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 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!