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
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 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
Check out the Formula Handbook template!