• 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 - Month series

F8MS

New Member
I need to prepare a financial report whereby given a variable year-end date input in a cell (e.g. A1: 31.03.12)a formula will allow me to have a serie of the next 12 following month.

I cannot use A1+30 = 30.04.12 because of course if A1: was 30.04.12 will not work


Thank you
 
Make sure you have the analysis ToolPak add-in enabled, and then do:

=EOMONTH(A1,1)

Drag to the right as needed.


If you want to dates shown to be the first of each month, use:

=EOMONTH(A1,0)+1
 
Back
Top