How to calculate days since a date
I am trying to calculate how many days there have been since a certain date that I have a column for. I am tracking when I send a contract out and want to see how many days have passed since I sent that contract.
I created the formula in excel and tried to bring it over when I imported the sheet, but it didn't work.
0
Comments
-
Mike Wilday ✭✭✭✭✭✭
在一个不w column, you can use simple math to calculate the number of calendar days.
=netdays([Date Column Title]@row, Today())
Or you can calculate the number of workdays using:
=networkdays([Date Column Title]@row, Today())
You can also add a list of holiday dates to this formula to adjust if you so desire.
For more Information:
1