calculate date between

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi to all

want to calculate date between....

i.e. Date = 01/07/2007

add 8 years and 7 months
so pl. help me for formula, for add 8 years and 7 months into date......

also if possible give me formul as calculate days between two date

Thanks
 
If you have the Analysis ToolPak add-in enabled, try this:

For 01/07/2007 in A1
B1: =EDATE(A1,(8*12)+7)

For the number of days between those 2 dates, simple math works:
C1: B1-A1

Does that help?
***********
Regards,
Ron

XL2002, WinXP
 
=DATE(YEAR(A1)+8,MONTH(A1)+7,DAY(A1))

to calculate days between just take the earlier from the later.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
To add 8 years and 7 months to a date in A1 the simplest way would be to
use EDATE function from Analysis Toolpak..

=EDATE(A1,8*12+7)

to calculate the number of days between two dates, A2 and B2 where B2
is later than a2

=B2-A2

format as number
 

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