Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello I have a cell formatted as =TODAY()-1 which is fine. The problem is
on Monday I want Friday's date, and of course, I get Sunday's date. How can I correct this? thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(WEEKDAY(TODAY())=2,TODAY()-3,TODAY()-1)
-- Gary's Student "Wanna Learn" wrote: Hello I have a cell formatted as =TODAY()-1 which is fine. The problem is on Monday I want Friday's date, and of course, I get Sunday's date. How can I correct this? thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
What does this mean in English: IF today is Monday, then TODAY minus 3, ELSE
TODAY minus 1? -- Brevity is the soul of wit. "Gary''s Student" wrote: =IF(WEEKDAY(TODAY())=2,TODAY()-3,TODAY()-1) -- Gary's Student "Wanna Learn" wrote: Hello I have a cell formatted as =TODAY()-1 which is fine. The problem is on Monday I want Friday's date, and of course, I get Sunday's date. How can I correct this? thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Get the previous WORKING day.
If today is a Monday, subtract 3 days from it so as to avoid Saturday and Sunday, otherwise just subtract 1 day. -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Dave F" wrote in message ... What does this mean in English: IF today is Monday, then TODAY minus 3, ELSE TODAY minus 1? -- Brevity is the soul of wit. "Gary''s Student" wrote: =IF(WEEKDAY(TODAY())=2,TODAY()-3,TODAY()-1) -- Gary's Student "Wanna Learn" wrote: Hello I have a cell formatted as =TODAY()-1 which is fine. The problem is on Monday I want Friday's date, and of course, I get Sunday's date. How can I correct this? thanks |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Gary Thank you
and Dave F an extra thanks for the "English" explanation. Since the only way to learn is to understand what is being said. "Dave F" wrote: What does this mean in English: IF today is Monday, then TODAY minus 3, ELSE TODAY minus 1? -- Brevity is the soul of wit. "Gary''s Student" wrote: =IF(WEEKDAY(TODAY())=2,TODAY()-3,TODAY()-1) -- Gary's Student "Wanna Learn" wrote: Hello I have a cell formatted as =TODAY()-1 which is fine. The problem is on Monday I want Friday's date, and of course, I get Sunday's date. How can I correct this? thanks |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I think Dave was asking for an English explanation.
-- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Wanna Learn" wrote in message ... Gary Thank you and Dave F an extra thanks for the "English" explanation. Since the only way to learn is to understand what is being said. "Dave F" wrote: What does this mean in English: IF today is Monday, then TODAY minus 3, ELSE TODAY minus 1? -- Brevity is the soul of wit. "Gary''s Student" wrote: =IF(WEEKDAY(TODAY())=2,TODAY()-3,TODAY()-1) -- Gary's Student "Wanna Learn" wrote: Hello I have a cell formatted as =TODAY()-1 which is fine. The problem is on Monday I want Friday's date, and of course, I get Sunday's date. How can I correct this? thanks |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() =WORKDAY(TODAY(),-1) -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Wanna Learn" wrote in message ... Hello I have a cell formatted as =TODAY()-1 which is fine. The problem is on Monday I want Friday's date, and of course, I get Sunday's date. How can I correct this? thanks |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Bob
"Bob Phillips" wrote: =WORKDAY(TODAY(),-1) -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Wanna Learn" wrote in message ... Hello I have a cell formatted as =TODAY()-1 which is fine. The problem is on Monday I want Friday's date, and of course, I get Sunday's date. How can I correct this? thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sum a range of cells starting from an offset date list from TODAY() | Excel Worksheet Functions | |||
Today() & Now() function | Excel Worksheet Functions | |||
Automatically filling date of today (without it changing tomorrow) | Excel Discussion (Misc queries) | |||
Today() | Excel Worksheet Functions | |||
Conditional Formatting Cell < Today() | Excel Worksheet Functions |