Formula to calculate number of days between Dates

  • Thread starter Thread starter themax16
  • Start date Start date
T

themax16

Afternoon.
I have 2 lists of dates... one is for an estimated delivery date and
the second is the actual date. If the date's do not match ( the
delivery is late) then i need it to calculate the number of days that
its late. How can i do this calculation for a date format?
Thanks
James
 
Just subtract one from the other, and format as General.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Afternoon.
I have 2 lists of dates... one is for an estimated delivery date and
the second is the actual date. If the date's do not match ( the
delivery is late) then i need it to calculate the number of days that
its late. How can i do this calculation for a date format?
Thanks
James

In Excel, dates are stored as serial numbers.

So if your Estimated Date is in A1, and the Actual date in B1, the difference
would be given by:

=B1-A1

You must format the result as General or Number. Otherwise Excel will display
some date in the 1900's


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top