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
- 65.5K Get Help
- 448 Global Discussions
- 145 Industry Talk
- 481 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 73 Community Job Board
- 492 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 304 Events
- 37 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!