Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
I'd like to find out the date of the first Monday of every month for the current year. Ideally I'd like to display this in a list e.g. A1 to A12 I'm sure this can be calculated in Excel but I'm not sure what formula would do this. Any pointers would be gratefully received. Many thanks Ian |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Ian,
Look he http://www.cpearson.com/excel/DateTi...tm#LastWeekday -- Kind regards, Niek Otten Microsoft MVP - Excel "Ian R" wrote in message ... | Hi | | I'd like to find out the date of the first Monday of every month for the | current year. Ideally I'd like to display this in a list e.g. A1 to A12 | | I'm sure this can be calculated in Excel but I'm not sure what formula would | do this. | | Any pointers would be gratefully received. | | Many thanks | | Ian | | |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=DATE(2008,ROW(),1)+(8-WEEKDAY(DATE(2008,ROW(),1),2))*(WEEKDAY(DATE(2008, ROW(),1),2)1)
-- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Ian R" wrote in message ... Hi I'd like to find out the date of the first Monday of every month for the current year. Ideally I'd like to display this in a list e.g. A1 to A12 I'm sure this can be calculated in Excel but I'm not sure what formula would do this. Any pointers would be gratefully received. Many thanks Ian |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Sun, 29 Jun 2008 12:15:08 +0100, "Ian R" wrote:
Hi I'd like to find out the date of the first Monday of every month for the current year. Ideally I'd like to display this in a list e.g. A1 to A12 I'm sure this can be calculated in Excel but I'm not sure what formula would do this. Any pointers would be gratefully received. Many thanks Ian A1: =DATE(YEAR(TODAY()),ROWS($1:1),8)-WEEKDAY(DATE(YEAR(TODAY()),ROWS($1:1),1)+5) fill down to A12 --ron |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() "Bob Phillips" wrote in message ... =DATE(2008,ROW(),1)+(8-WEEKDAY(DATE(2008,ROW(),1),2))*(WEEKDAY(DATE(2008, ROW(),1),2)1) -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) Wow! Thanks Bob Thats exactly what I needed. Would have taken me an age to work that out for myself. I'll study the formula to see how it works. Thanks again. Ian I^) |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() "Niek Otten" wrote in message ... Hi Ian, Look he http://www.cpearson.com/excel/DateTi...tm#LastWeekday -- Kind regards, Niek Otten Microsoft MVP - Excel Thanks for the link Niek. Looks like Ive got a bit of work to do 8^) Ian I^) |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=DATE(2008,ROW(),1)+(8-WEEKDAY(DATE(2008,ROW(),1),2))*(WEEKDAY(DATE(2008, ROW(),1),2)1)
Bob Wow! Thanks Bob Thats exactly what I needed. Would have taken me an age to work that out for myself. I'll study the formula to see how it works. Perhaps worth considering as well ... =DATE(2008,ROW(),1)+CHOOSE(WEEKDAY(DATE(2008,ROW() ,1)),1,0,6,5,4,3,2) Plus you should be able to figure out how it works relatively easily. Rick |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello,
Select 12 vertical cells and array-enter (enter with CTRL + SHIFT + ENTER): =7+DATE(2008,ROW(INDIRECT("1:12")),1)- MOD(DATE(2008,ROW(INDIRECT("1:12")),1)-2,7) Regards, Bernd |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Date calculation for Monday of one month to the Monday of the next | Excel Discussion (Misc queries) | |||
Calculating first/last Monday, Tuesday, etc. in a given month in E | Excel Worksheet Functions | |||
1st Monday of a month in date range?? | Excel Worksheet Functions | |||
Finding the date on the 'nth' Monday in this Month in this Year | Excel Worksheet Functions | |||
Find the date for monday prior to May 25th | Excel Worksheet Functions |