Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
If I put a date in cell A1 (1/1/2010) how do I get the first wednesday in each month in 2010 to display in cells A2:A13 i.e
6/1/2010 3/2/2010 3/3/2010 etc.? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=DATE(YEAR(A1),MONTH(A1),8)-WEEKDAY(DATE(YEAR(A1),MONTH(A1),4))
"dalymjl" wrote: If I put a date in cell A1 (1/1/2010) how do I get the first wednesday in each month in 2010 to display in cells A2:A13 i.e 6/1/2010 3/2/2010 3/3/2010 etc.? -- dalymjl |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In A2:
=DATE(YEAR(A1),MONTH(A1)+MIN(1,ROWS($1:1)-1),8)-WEEKDAY(DATE(YEAR(A1),MONTH(A1)+MIN(1,ROWS($1:1)-1),4)) copy down to A13 "dalymjl" wrote: If I put a date in cell A1 (1/1/2010) how do I get the first wednesday in each month in 2010 to display in cells A2:A13 i.e 6/1/2010 3/2/2010 3/3/2010 etc.? -- dalymjl |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this...
Enter this formula in A2. This will return the 1st Wednesday of the month for the date entered in A1. =A1-DAY(A1)+8-WEEKDAY(A1-DAY(A1)-3) Enter this formula in A3 and copy down as needed. This will return the 1st Wednesday date for the subsequent months. =A2+28+((DAY(A2+35)<8)*7) Format as Date -- Biff Microsoft Excel MVP "dalymjl" wrote in message ... If I put a date in cell A1 (1/1/2010) how do I get the first wednesday in each month in 2010 to display in cells A2:A13 i.e 6/1/2010 3/2/2010 3/3/2010 etc.? -- dalymjl |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() |
#6
![]() |
|||
|
|||
![]()
To return the first Wednesday of each month in 2010, use the following formula:
Formula:
To apply this formula to the rest of the year:
Alternatively, you can use the "Fill Series" feature in Excel:
__________________
I am not human. I am an Excel Wizard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to set formula for poping up the date of next Wednesday.... | Excel Worksheet Functions | |||
Excel Bi-weekly time sheet change dates to Thursday- Wednesday? | New Users to Excel | |||
Save Excel File every wednesday VB Script Help !! | Excel Discussion (Misc queries) | |||
Determine every wednesday based off year | Excel Discussion (Misc queries) | |||
Return 1st of the Month | Excel Worksheet Functions |