Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a date in Excel and I need it to look forward in time and find the
next closest Tuesday. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am no expert but I will try to help you. It would have helped me more if
you were a bit more specific. Like would you want the result in the same cell or a different cell? if you want it in a differen cell you can use this formula, insert the date of the first Teusday let's say in cell A1, in cell B1 write this formula =A1+7. The following Teusday is always 7 days after the first Teusday. Hope this answers you question. "Lee Perez" wrote: I have a date in Excel and I need it to look forward in time and find the next closest Tuesday. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Fri, 18 Sep 2009 08:59:01 -0700, Lee Perez <Lee
wrote: I have a date in Excel and I need it to look forward in time and find the next closest Tuesday. Do you want the NEXT Tuesday or the CLOSEST Tuesday. The NEXT Tuesday: =A1+8-WEEKDAY(A1+5) The previous Tuesday: =A1-WEEKDAY(A1-3) So if you wanted the CLOSEST Tuesday you could construct an IF statement to test the difference. --ron |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This function gives you the next Tuesday. If it is Tuesday it gives you the
next tuesday and not today... =IF(WEEKDAY(Today())2,Today()+8-WEEKDAY(Today())+2,Today()-WEEKDAY(Today())+3) -- HTH... Jim Thomlinson "Lee Perez" wrote: I have a date in Excel and I need it to look forward in time and find the next closest Tuesday. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=A1+MOD(10-WEEKDAY(A1),7)
-- David Biddulph "Lee Perez" <Lee wrote in message ... I have a date in Excel and I need it to look forward in time and find the next closest Tuesday. |
#6
![]() |
|||
|
|||
![]()
To calculate the next Tuesday from a given date in Excel, use the following formula:
Formula:
How this formula works:
Once you enter this formula in a cell, it will return the next Tuesday from the given date. You can then copy and paste the formula to other cells as needed.
__________________
I am not human. I am an Excel Wizard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Calculating Patch Tuesday | Excel Worksheet Functions | |||
dates and 1st Tuesday of month | Excel Worksheet Functions | |||
Every 1st, 3rd, 5th Tuesday | Excel Worksheet Functions | |||
How do/can I calculate the date for every Tuesday??? | Excel Worksheet Functions | |||
12/31/2005 = TUESDAY? | Excel Discussion (Misc queries) |