• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

date calculation

ushaanu

Member
Hi all,

I have some dates with me I need add one year add .

like date is 17/02/2015 next date will be 16/02/2016.

Thanks
Anu
 
Hi Anu,
Try this:
=DATE(YEAR(A2)+1,MONTH(A2),DAY(A2)-1)

where A2 contains 17/02/2015
YEAR(A2)+1 does the trick for year.
DAY(A2)-1 does for day.

Regards,
 
Back
Top