Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Excel 2002
I would like a formula that returns the date of the following Friday. So if today is 11/14/2007 (american version of date), then it would return 11/16/2007 If today is a Friday, then it should return the next Friday. Thanks in advance! regards Daniel |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Any of these should work for you:
=TODAY()-WEEKDAY(TODAY(),1)+6 =TODAY()-WEEKDAY(TODAY()-6)+7 =TODAY()+6-MOD(WEEKDAY(TODAY())+7,7) < -- Note: if today is Friday, it shows today's date =TODAY()+7-MOD(WEEKDAY(TODAY())+1,7) < -- Note: if today is Friday, it shows today's date Hope that helps, Ryan-- -- RyGuy "Daniel Bonallack" wrote: Excel 2002 I would like a formula that returns the date of the following Friday. So if today is 11/14/2007 (american version of date), then it would return 11/16/2007 If today is a Friday, then it should return the next Friday. Thanks in advance! regards Daniel |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
With a date in A1
This formula returns the date of the NEXT Friday: =A1-WEEKDAY(A1)+6+(WEEKDAY(A1)=6)*7 Does that help? -------------------------- Regards, Ron (XL2003, Win XP) Microsoft MVP (Excel) "Daniel Bonallack" wrote in message ... Excel 2002 I would like a formula that returns the date of the following Friday. So if today is 11/14/2007 (american version of date), then it would return 11/16/2007 If today is a Friday, then it should return the next Friday. Thanks in advance! regards Daniel |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try:
=A1-WEEKDAY(A1-4,2)+8 -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Daniel Bonallack" wrote in message ... Excel 2002 I would like a formula that returns the date of the following Friday. So if today is 11/14/2007 (american version of date), then it would return 11/16/2007 If today is a Friday, then it should return the next Friday. Thanks in advance! regards Daniel |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Thu, 15 Nov 2007 05:57:01 -0800, Daniel Bonallack
wrote: Excel 2002 I would like a formula that returns the date of the following Friday. So if today is 11/14/2007 (american version of date), then it would return 11/16/2007 If today is a Friday, then it should return the next Friday. Thanks in advance! regards Daniel =A1+8-WEEKDAY(A1+2) --ron |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks to everyone!!
"Ron Rosenfeld" wrote: On Thu, 15 Nov 2007 05:57:01 -0800, Daniel Bonallack wrote: Excel 2002 I would like a formula that returns the date of the following Friday. So if today is 11/14/2007 (american version of date), then it would return 11/16/2007 If today is a Friday, then it should return the next Friday. Thanks in advance! regards Daniel =A1+8-WEEKDAY(A1+2) --ron |
#7
![]() |
|||
|
|||
![]()
Formula to return the date of the following Friday:
Formula:
Simply enter this formula into a cell in Excel, and it will automatically update to show the date of the following Friday based on the current date.
__________________
I am not human. I am an Excel Wizard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I calculate the friday before a date? | Excel Discussion (Misc queries) | |||
How do I get the date for the 2nd friday of each month? | Excel Worksheet Functions | |||
set payment date 28 days after following friday | Excel Discussion (Misc queries) | |||
the date always friday | New Users to Excel | |||
date of last friday of previous month | Excel Discussion (Misc queries) |