Date formula help

Hi,
I have a start date column and a complete date column. I am trying to track number of days since the start date (to today) that stops counting when the complete date column is filled in. If I use NETDAYS, it does not give me a count until the second date is filled in.
Thanks!
Best Answer
-
Hi @JArrington,
You could use an If statement that could look something like the below.
=IF([Completed Date]@row = "", NETDAYS([Start Date]@row, TODAY()), NETDAYS([Start Date]@row, [Completed Date]@row))
This IF statement uses the TODAY() option where the field is not completed, therefore every day this will show as a day older.
I have added a screenshot of a demo sheet I created to look at this.
Hope this helps!
John
Answers
-
Hi @JArrington,
You could use an If statement that could look something like the below.
=IF([Completed Date]@row = "", NETDAYS([Start Date]@row, TODAY()), NETDAYS([Start Date]@row, [Completed Date]@row))
This IF statement uses the TODAY() option where the field is not completed, therefore every day this will show as a day older.
I have added a screenshot of a demo sheet I created to look at this.
Hope this helps!
John
-
Very helpful!
Thank you!
Jen
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!