Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to put the future Saturday date in a cell. In other words, any time
that I open my spreadsheet, regardless of whether it is on a Tuesday or Thursday or any day, I want that particular cell to know what the upcoming Saturday date is. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=TODAY()+CHOOSE(WEEKDAY(TODAY()),6,5,4,3,2,1,0)
-- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Mae" wrote in message ... I want to put the future Saturday date in a cell. In other words, any time that I open my spreadsheet, regardless of whether it is on a Tuesday or Thursday or any day, I want that particular cell to know what the upcoming Saturday date is. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You are a guru! That is perfect! Thank you very much!
Mae "Bob Phillips" wrote: =TODAY()+CHOOSE(WEEKDAY(TODAY()),6,5,4,3,2,1,0) -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Mae" wrote in message ... I want to put the future Saturday date in a cell. In other words, any time that I open my spreadsheet, regardless of whether it is on a Tuesday or Thursday or any day, I want that particular cell to know what the upcoming Saturday date is. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=TODAY()+7-WEEKDAY(TODAY()+7)
or if you want Saturday to show the following Saturday not that day: =TODAY()+8-WEEKDAY(TODAY()+8) -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Mae" wrote in message ... I want to put the future Saturday date in a cell. In other words, any time that I open my spreadsheet, regardless of whether it is on a Tuesday or Thursday or any day, I want that particular cell to know what the upcoming Saturday date is. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi, Sandy:
Do you have a typo in one of your formulas? For me, both return the same date. Why WEEKDAY(TODAY()+7)? That's the same as WEEKDAY(TODAY()), no? Can't you use just =TODAY()-WEEKDAY(TODAY())+7 The subtraction takes you to the Saturday BEFORE today, adding 7 takes you to the Saturday AFTER today. This gives the same result as your formulas. On Wed, 24 Oct 2007 15:28:10 +0100, "Sandy Mann" wrote: =TODAY()+7-WEEKDAY(TODAY()+7) or if you want Saturday to show the following Saturday not that day: =TODAY()+8-WEEKDAY(TODAY()+8) |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"Myrna Larson" wrote in message
... Do you have a typo in one of your formulas? For me, both return the same date Yes they do for today or any day that is not a Saturday but, unlesss I have got it wrong, the +8 formula will return the *next* Saturday's date not that day's date. I tested it by referencing a column of dates with both formulas instead of hard coding TODAY() and both formulas returned the same date until the originating cell was a Saturday when there was a 7 day difference. Or am I wrong? -- Regards, Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Myrna Larson" wrote in message ... Hi, Sandy: Do you have a typo in one of your formulas? For me, both return the same date. Why WEEKDAY(TODAY()+7)? That's the same as WEEKDAY(TODAY()), no? Can't you use just =TODAY()-WEEKDAY(TODAY())+7 The subtraction takes you to the Saturday BEFORE today, adding 7 takes you to the Saturday AFTER today. This gives the same result as your formulas. On Wed, 24 Oct 2007 15:28:10 +0100, "Sandy Mann" wrote: =TODAY()+7-WEEKDAY(TODAY()+7) or if you want Saturday to show the following Saturday not that day: =TODAY()+8-WEEKDAY(TODAY()+8) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
cell color in conjunction with upcoming date | Excel Discussion (Misc queries) | |||
Determine next Saturday in calendar based on date in a cell | New Users to Excel | |||
Upcoming expiry date warnings that turn cell contents red | Excel Discussion (Misc queries) | |||
can a cell remind you of an upcoming bill date payment | Excel Discussion (Misc queries) | |||
compute upcoming Sunday date in a cell | Excel Worksheet Functions |