Date formula

S

smooney

What I need is a formula that will tell me the date at 3 months, 6 months, 1
year, etc. from the hire date. Under Annual, it will always be the current
year. If the hire date is more than 2 years, then I only need the annual
date which will be the current year.


Hire Date 3 Month 6 Month 1 Year 18 Month 2 Years Annual
06/30/2009

Thanks
 
F

Fred Smith

3 months: =date(year(a1),month(a1)+3,day(a1))
6 months: =date(year(a1),month(a1)+6,day(a1))
1 year: =date(year(a1)+1,month(a1),day(a1))
etc.

Regards,
Fred
 

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

Top