Number of days between today and a specific date
Options

atwolfindy
ββ
I have a date of contact in one column and in another need to show the number of days since that date of contact. I'm using the following formula: =NETDAYS([Last Contact]@row, TODAY())
The problem is that it is showing an extra day for some reason. If the date of contact was 10/30/23 and today is 10/31/23, the formula calculates 2 days instead of just 1 day. If the date of contact was 10/31/23 and today is also 10/31/23, the formula calculates 1 day instead of 0 days.
Best Answer
-
Try subtracting one from the output.
=NETDAYS([Last Contact]@row, TODAY()) - 1
Answers
-
Try subtracting one from the output.
=NETDAYS([Last Contact]@row, TODAY()) - 1
-
That works. Thank you!
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!