Help w/formula to add 1 year to cell (date done) date due?

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

Guest

Can someone help me with a formula that would allow me to put today's date in
one cell (date done) and then add one year so that the next cell would come
up with the date one or two years from now (date due)?
Thanks
GregJ
 
Hi,

=DATE(YEAR(TODAY())+1,MONTH(TODAY()),DAY(TODAY()))

should do the job ...

HTH
Cheers
Carim
 
if your initial date is in A1, try
=DATE(YEAR(A1)+1,MONTH(A1),DAY(A1))
and format for the date style you want
 
Hi,

Try this: (Assuming today's date in Cell A1. B1 is for putting one year or
two years. Put this formula in C1)

=IF(B1=1,(A1+365),IF(B1=2,(A1+730+1)))

Regards,

Jaleel
 

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