Calc Date Based on Year

J

Johnny

I need a formula that calculates the end date of each calendar quater based
on the year. For example, if the year in A1 = 2009 then the dates in A2
through A5 should be 1/31/09, 4/30/09, 7/31/09 & 10/31/09 respectively. When
I change A1 to 2010, I need the dates to reflect 2010 dates. I would also
need the formulat to account for leap years if possible.

Thank you
 
G

Gary''s Student

In A2 thru A5:

=DATE(A1,1,31)
=DATE(A1,4,30)
=DATE(A1,7,31)
=DATE(A1,10,31)
 

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