+ Reply to Thread
Results 1 to 6 of 6

Calculate the date of the first friday following a date

  1. #1
    Registered User
    Join Date
    11-24-2012
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    17

    Calculate the date of the first friday following a date

    Hi,

    I have a date in A1, I would like a formula to return the next Friday date in A2

    Example;

    A1 = 25/11/12
    A2 = 30/11/12


  2. #2
    Forum Contributor Charlie_Howell's Avatar
    Join Date
    09-27-2010
    Location
    Memphis, TN
    MS-Off Ver
    Excel 2007
    Posts
    218

    Re: Calculate the date of the first friday following a date

    =a1+8
    Put this formula in the desired cell
    There is no substitute for clean data.

  3. #3
    Forum Guru benishiryo's Avatar
    Join Date
    03-25-2011
    Location
    Singapore
    MS-Off Ver
    Excel 2013
    Posts
    5,147

    Re: Calculate the date of the first friday following a date

    hi again Oldeuboi. try:
    =IF(WEEKDAY(A1,2)>=5,A1-WEEKDAY(A1,2)+12,A1-WEEKDAY(A1,2)+5)

    Thanks, if you have clicked on the * and added our rep.

    If you're satisfied with the answer, click Thread Tools above your first post, select "Mark your thread as Solved".

    "Contentment is not the fulfillment of what you want, but the realization of what you already have."


    Tips & Tutorials I Compiled | How to Get Quick & Good Answers

  4. #4
    Forum Expert Palmetto's Avatar
    Join Date
    04-04-2007
    Location
    South Eastern, USA
    MS-Off Ver
    XP, 2007, 2010
    Posts
    3,978

    Re: Calculate the date of the first friday following a date

    =a1+(6-weekday(a1))
    Palmetto

    Do you know . . . ?

    You can leave feedback and add to the reputation of all who contributed a helpful response to your solution by clicking the star icon located at the left in one of their post in this thread.

  5. #5
    Forum Contributor Charlie_Howell's Avatar
    Join Date
    09-27-2010
    Location
    Memphis, TN
    MS-Off Ver
    Excel 2007
    Posts
    218

    Re: Calculate the date of the first friday following a date

    here is another option

    =IF(WEEKDAY(A1)=6,A1+7,IF(WEEKDAY(A1)=7,A1+6,(A1+6-WEEKDAY(A1))))

  6. #6
    Registered User
    Join Date
    11-24-2012
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    17

    Re: Calculate the date of the first friday following a date

    Thank you ALL!!!!!!


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1