I want to have the first day of the current month displayed in A1 and the following months displayed beneith. So when the next month happens the columns rolls up one to displaythe next current month
case 1: you want only the month displayed
A2 = IF(MOD((MONTH($A$1)+ROW()-1), 12)=0,12,MOD((MONTH($A$1)+ROW()-1), 12))
Drag down as needed
From A2 down, the cells should be formatted as numbers
case 2: you want the first day of next month displayed
A2 = DATE(YEAR(A1),MONTH(A1)+1,DAY(A1))
Drag down as needed
Dan
P.S. xlhelp: using EOMONTH function causes an #Name error. Is it a user defined one?
Nope - EOMONTH is part of the Analysis Toolpak (M$ addin) - just go to Tools>Add ins and tick the box next to it - it should be there already - you just need to select it - it'll give you a set of extra worksheet (and vba) functions
Rgds
~Geoff~
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.