Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hello
I'm sure I've done this before, but I can't remember how. I need a cell to return the date of the first Monday after today. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=TODAY()+7-WEEKDAY(TODAY(),3)
-- David Biddulph "robzrob" wrote in message ... Hello I'm sure I've done this before, but I can't remember how. I need a cell to return the date of the first Monday after today. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What if today is Monday? Return today's date or next Monday's date?
-- Biff Microsoft Excel MVP "robzrob" wrote in message ... Hello I'm sure I've done this before, but I can't remember how. I need a cell to return the date of the first Monday after today. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What if today is a Monday, next Monday or current?
If you always want the next Monday =TODAY()+CHOOSE(WEEKDAY(TODAY()),1,7,6,5,4,3,2) unless today is a Monday =TODAY()-WEEKDAY(TODAY()-2)+7 -- Regards, Peo Sjoblom "robzrob" wrote in message ... Hello I'm sure I've done this before, but I can't remember how. I need a cell to return the date of the first Monday after today. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=CEILING(A1+6,7)-5
In A1 you have today's date or =CEILING(TODAY()+6,7)-5 Regards, Bernd |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Aug 31, 10:12*pm, Bernd P wrote:
=CEILING(A1+6,7)-5 In A1 you have today's date or =CEILING(TODAY()+6,7)-5 Regards, Bernd Thanks, Bernd |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Aug 31, 10:17*pm, robzrob wrote:
On Aug 31, 10:12*pm, Bernd P wrote: =CEILING(A1+6,7)-5 In A1 you have today's date or =CEILING(TODAY()+6,7)-5 Regards, Bernd Thanks, Bernd Always the first Monday after today, even if today is a Monday. Thanks, All |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Aug 31, 10:19*pm, robzrob wrote:
On Aug 31, 10:17*pm, robzrob wrote: On Aug 31, 10:12*pm, Bernd P wrote: =CEILING(A1+6,7)-5 In A1 you have today's date or =CEILING(TODAY()+6,7)-5 Regards, Bernd Thanks, Bernd Always the first Monday after today, even if today is a Monday. Thanks, All You're bloody marvellous, all of you!!!! |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Biff,
If a Monday should result in same day, don't add 6 but 5: =CEILING(A1+5,7)-5 Regards, Bernd |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Calculate every Monday | Excel Discussion (Misc queries) | |||
First Monday | Excel Discussion (Misc queries) | |||
Date calculation for Monday of one month to the Monday of the next | Excel Discussion (Misc queries) | |||
Find First Monday in May | Excel Worksheet Functions | |||
Date to a day (Monday, Tue, etc?) | Excel Discussion (Misc queries) |