Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to enter a first of the month start date that will fill in in a
vertical row of the rest of the dates in that month. It should not enter dates such as 2/30/09 oldjay |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Suppose you put the first date in A1, then in A2 you can enter this
formula: =IF(A1="","",IF(MONTH(A1+1)<MONTH(A1),"",A1+1)) then copy this down to row 31. Note that columns are vertical, not rows Hope this helps. Pete On Feb 19, 6:41*pm, Oldjay wrote: I want to enter a first of the month start date that will fill in in a vertical row of the rest of the dates in that month. It should not enter dates such as 2/30/09 oldjay |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
Type your date in one cell and put this formula in the next cell =IF($A$2+COLUMN(B1)-1,$A$2+COLUMN(B1)-1,"") You will need to adjust the starting cell A2 is the starting cell that you type your date change it to your needs HTH John "Oldjay" wrote in message ... I want to enter a first of the month start date that will fill in in a vertical row of the rest of the dates in that month. It should not enter dates such as 2/30/09 oldjay |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Put in the fisrt date, select the lower right corner of the cell and
drag down to auto-fill. Oldjay wrote: I want to enter a first of the month start date that will fill in in a vertical row of the rest of the dates in that month. It should not enter dates such as 2/30/09 oldjay |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Put your first date in a cell (say A1)
then put: =a1+1 and drag down as far as you need. You could also put the date in the top cell rightclick on the fill handle (bottom right corner of the cell) and drag down. When you let go of the mouse button, you'll be asked what you want--you can choose fill days (or whatever you want). Oldjay wrote: I want to enter a first of the month start date that will fill in in a vertical row of the rest of the dates in that month. It should not enter dates such as 2/30/09 oldjay -- Dave Peterson |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Pete UK had the formula that I was looking for. It only shows dates in that
month. Feb only shows dates thru the 28th and leaves the last 3 rows blank. March shows dates in all 31 rows I didn't check a leap year but I won't worryabout that now. oldjay "Dave Peterson" wrote: Put your first date in a cell (say A1) then put: =a1+1 and drag down as far as you need. You could also put the date in the top cell rightclick on the fill handle (bottom right corner of the cell) and drag down. When you let go of the mouse button, you'll be asked what you want--you can choose fill days (or whatever you want). Oldjay wrote: I want to enter a first of the month start date that will fill in in a vertical row of the rest of the dates in that month. It should not enter dates such as 2/30/09 oldjay -- Dave Peterson |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks for feeding back - it will work for leap years as well.
Pete On Feb 19, 9:41*pm, Oldjay wrote: Pete UK had the formula that I was looking for. It only shows dates in that month. Feb only shows dates thru the 28th and leaves the last 3 rows blank. March shows dates in all 31 rows I didn't check a leap year but I won't worryabout that now. oldjay |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Again
If its vertical this one will do. The first one was for horizontal =IF($A$2+ROW(A1),$A$2+ROW(A1),"") HTH John "Oldjay" wrote in message ... I want to enter a first of the month start date that will fill in in a vertical row of the rest of the dates in that month. It should not enter dates such as 2/30/09 oldjay |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=A1+1 and copy down.
-- David Biddulph Oldjay wrote: I want to enter a first of the month start date that will fill in in a vertical row of the rest of the dates in that month. It should not enter dates such as 2/30/09 oldjay |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I sort a column of random dates into Consecutive dates | Excel Worksheet Functions | |||
Identifying unique dates within a range of cells containing dates | Excel Discussion (Misc queries) | |||
need to convert list of dates to count no. of dates by week | Excel Worksheet Functions | |||
Calculating number of days between two dates that fall between two other dates | Excel Discussion (Misc queries) | |||
Charting data against dates where dates are not at fixed intervals | Charts and Charting in Excel |