+ Reply to Thread
Results 1 to 8 of 8

Next date after Today()

Hybrid View

  1. #1
    Registered User
    Join Date
    12-19-2008
    Location
    CA
    Posts
    64

    Next date after Today()

    What I'm trying to accomplish:

    In A1:
    If a date in H2:H10 is greater than TODAY(), return the value of that date.

    If TODAY() happens to be 1/20 and H2:H10 looks like this:

    1/5/09
    1/6/09
    1/13/09
    1/14/09
    1/19/09
    1/15/09
    1/22/09
    1/27/09
    1/8/09
    1/28/09


    than A1 should have the value of 1/22/09
    When TODAY() = 1/28/09, A1 should have no value, preferably no error either, but I can live with a NUM! or Value! or #N/A

    Dates will not always be ascending. All cells in H2:H10 may not be filled. There may possibly be a duplicate, but the fact that there is a duplicate is not important to my result. (I'm looking for the 'next scheduled working day' whatever it is)
    Last edited by Lizabeta; 01-21-2009 at 08:36 PM. Reason: Edit: To Solved status... 2nd Edit:Noticed some baaad grammer

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531
    entered as an array with CTRL + SHIFT + ENTER

    A1: =IF(COUNTIF(H2:H10,">"&TODAY()),MIN(IF(H2:H10>TODAY(),H2:10)),"")

    once array has been setup the above will appear encased within { }

  3. #3
    Registered User
    Join Date
    12-19-2008
    Location
    CA
    Posts
    64
    Quote Originally Posted by DonkeyOte View Post
    entered as an array with CTRL + SHIFT + ENTER

    A1: =IF(COUNTIF(H2:H10,">"&TODAY()),MIN(IF(H2:H10>TODAY(),H2:H10)),"")

    once array has been setup the above will appear encased within { }

    When do you use the Ctrl/shift/enter? Instead of Enter? Before ctrl-v?

    EDIT: Nvm. got it. If you use Ctrl / Shift/ Enter as often as you can, eventually, one of them will work.
    /e mumbles something about a million monkeys on a million keyboards will eventually...
    Last edited by Lizabeta; 01-20-2009 at 06:12 PM.

  4. #4
    Registered User
    Join Date
    12-19-2008
    Location
    CA
    Posts
    64
    Thank you!!!

    It's all settled!


    Just out of curiosity, and so to further my brain development instead of regurgitating formulas.... Could you interpret that formula into plainspeak?

  5. #5
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531
    Not sure which you adopted but this:

    =IF(COUNTIF(H2:H10,">"&TODAY()),MIN(IF(H2:H10>TODAY(),H2:H10)),"")
    Can be broken down into 3 "BITS"

    First:

    =IF(COUNTIF(H2:H10,">"&TODAY()),do if true, do if false)
    So the above will count how many dates in the range specified exceed Today's date - the result will be an integer value between 0 and 9... it's important to note that only the value 0 equates to FALSE in XL and so it follows that should the result of the COUNTIF be anything other than 0 (1 to 9) then this equates to TRUE

    So let's assume answer is > 0*, do TRUE action, SECOND BIT, namely:
    *based on sample data shown further down

    MIN(IF(H2:H10>TODAY(),H2:H10))
    So the above is basically going through the range H2:H10 and creating an array of values, where the value of H2:H10 > TODAY that date will be added to the array, if it is <= TODAY() a Boolean of FALSE will be added to the array, so if we assume H2:H10 values of:

    H2: 1/5/09
    H3: 1/6/09
    H4: 1/13/09
    H5: 1/14/09
    H6: 1/19/09
    H7: 1/15/09
    H8: 1/22/09
    H9: 1/27/09
    H10: 1/8/09
    And a current date of 1/21 we will end up with an array of values as so:

    {FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,"1/22/09","1/27/09",FALSE)
    Note: that in the above the dates are shown in this way for illustrative purposes, in reality dates are integer values ... on 1900 date system 1/22/09 = 39835 and 1/27/09 = 39840 and these integer values are to all intents and purposes the values held in the array.

    We then run the MIN against the above array to return the lowest value from the range as this equates to the earliest date - the logicals (FALSE) will be ignored so we get Jan 22 returned.

    If today were 1/27 then the result of our initial COUNTIF would be 0, ie FALSE, in which case the FALSE action of the IF function would be actioned, THIRD BIT, namely:

    ""
    ie return blank


    If you ever need to work through a formula be sure to check out the "Evaluate Formula" option in XL which permits you to step through how a given formula is calculated -- it is a superb and often overlooked utility IMO and is handy for all users regardless of supposed expertise.
    Last edited by DonkeyOte; 01-21-2009 at 04:34 AM.

  6. #6
    Registered User
    Join Date
    12-19-2008
    Location
    CA
    Posts
    64
    Quote Originally Posted by DonkeyOte View Post
    If you ever need to work through a formula be sure to check out the "Evaluate Formula" option in XL which permits you to step through how a given formula is calculated -- it is a superb and often overlooked utility IMO and is handy for all users regardless of supposed expertise.
    I went and found the 'Evaluate Formula' option and while I will definitely keep it in mind for another day... you are exponentially more coherent and helpful.

    Thank you for the breakdown!

  7. #7
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320
    i think you will have to sort or put them in another helper column sorted descending and use
    =MATCH(TODAY()+1,H1:H12,-1)
    or then again perhaps donkeyote will come up with some array
    oooh what a surprise as i type there it is

  8. #8
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699
    You could use just

    =MIN(IF(H2:H10>TODAY(),H2:H10))

    custom format result cell as follows to show blank when there's no date later than today:

    m/d/yy;;

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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