Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How can I create a formula which will results in setting recurring dates when
copied down a column. I want the date to be on the 3rd Wednesday of each month. Each row would be for a successive month. This is essentially like the process available in Outlook for scheduling appointments, set the recurring criteria and it calculates the specific dates. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Enter the first date in a cell:
A1 = 1/21/2009 = 3rd Wed in Jan 2009 Enter this formula in A2 and copy down as needed: =DATE(YEAR(A1),MONTH(A1)+1,22)-WEEKDAY(DATE(YEAR(A1),MONTH(A1)+1,4)) -- Biff Microsoft Excel MVP "Mc/" wrote in message ... How can I create a formula which will results in setting recurring dates when copied down a column. I want the date to be on the 3rd Wednesday of each month. Each row would be for a successive month. This is essentially like the process available in Outlook for scheduling appointments, set the recurring criteria and it calculates the specific dates. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=DATE(YEAR(A1),MONTH(A1)+1,22)-WEEKDAY(DATE(YEAR(A1),MONTH(A1)+1,4))
I did dome tinkering and was able to reduce that to: =A1+28+((DAY(A1+35)<22)*7) -- Biff Microsoft Excel MVP "T. Valko" wrote in message ... Enter the first date in a cell: A1 = 1/21/2009 = 3rd Wed in Jan 2009 Enter this formula in A2 and copy down as needed: =DATE(YEAR(A1),MONTH(A1)+1,22)-WEEKDAY(DATE(YEAR(A1),MONTH(A1)+1,4)) -- Biff Microsoft Excel MVP "Mc/" wrote in message ... How can I create a formula which will results in setting recurring dates when copied down a column. I want the date to be on the 3rd Wednesday of each month. Each row would be for a successive month. This is essentially like the process available in Outlook for scheduling appointments, set the recurring criteria and it calculates the specific dates. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a similar question. I tried Formulas and got #VALUE! in A2 I did a
copy paste to be sure I didn't have syntax errors and the same thing. What I want mine to do is list every Sunday beginning on November 25, 2009 "T. Valko" wrote: =DATE(YEAR(A1),MONTH(A1)+1,22)-WEEKDAY(DATE(YEAR(A1),MONTH(A1)+1,4)) I did dome tinkering and was able to reduce that to: =A1+28+((DAY(A1+35)<22)*7) -- Biff Microsoft Excel MVP "T. Valko" wrote in message ... Enter the first date in a cell: A1 = 1/21/2009 = 3rd Wed in Jan 2009 Enter this formula in A2 and copy down as needed: =DATE(YEAR(A1),MONTH(A1)+1,22)-WEEKDAY(DATE(YEAR(A1),MONTH(A1)+1,4)) -- Biff Microsoft Excel MVP "Mc/" wrote in message ... How can I create a formula which will results in setting recurring dates when copied down a column. I want the date to be on the 3rd Wednesday of each month. Each row would be for a successive month. This is essentially like the process available in Outlook for scheduling appointments, set the recurring criteria and it calculates the specific dates. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
November 25, 2009 is not a Sunday, but you could enter this and copy down as needed:
="25-Nov-2009"-WEEKDAY("25-Nov-2009")+8+(ROW(A1)-1)*7 Don't forget to format the cells as date. DeanLinCPR wrote: I have a similar question. I tried Formulas and got #VALUE! in A2 I did a copy paste to be sure I didn't have syntax errors and the same thing. What I want mine to do is list every Sunday beginning on November 25, 2009 "T. Valko" wrote: =DATE(YEAR(A1),MONTH(A1)+1,22)-WEEKDAY(DATE(YEAR(A1),MONTH(A1)+1,4)) I did dome tinkering and was able to reduce that to: =A1+28+((DAY(A1+35)<22)*7) -- Biff Microsoft Excel MVP "T. Valko" wrote in message ... Enter the first date in a cell: A1 = 1/21/2009 = 3rd Wed in Jan 2009 Enter this formula in A2 and copy down as needed: =DATE(YEAR(A1),MONTH(A1)+1,22)-WEEKDAY(DATE(YEAR(A1),MONTH(A1)+1,4)) -- Biff Microsoft Excel MVP "Mc/" wrote in message ... How can I create a formula which will results in setting recurring dates when copied down a column. I want the date to be on the 3rd Wednesday of each month. Each row would be for a successive month. This is essentially like the process available in Outlook for scheduling appointments, set the recurring criteria and it calculates the specific dates. |
#6
![]() |
|||
|
|||
![]()
Creating a formula for recurring dates on the 3rd Wednesday of each month:
__________________
I am not human. I am an Excel Wizard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Recurring Date | Excel Worksheet Functions | |||
Recurring Excel Formula error - multiple users affected! | Excel Discussion (Misc queries) | |||
Formula to compare two lists and separate non-recurring items? | Excel Worksheet Functions | |||
Recurring annual events using a specific date as a trigger date | Excel Worksheet Functions | |||
Calculating recurring date in following month, calculating # days in that period | Excel Worksheet Functions |