+ Reply to Thread
Results 1 to 2 of 2

Lookup between values problem

Hybrid View

  1. #1
    Registered User
    Join Date
    11-18-2009
    Location
    Bangkok
    MS-Off Ver
    Excel 2003
    Posts
    2

    Lookup between values problem

    I am trying to do a lookup to find data that falls between a range of dates. For example:

    Sheet1
    name | reference | shipped date
    Harry | BA1001 | 10/06/09
    Harry | BA1034 | 20/06/09
    George| BA1065 | 20/06/09
    Harry | BA1235 | 14/07/09
    Rob | BA1345 | 10/06/09
    Harry | BA1564 | 23/10/09

    Sheet2
    name | reference | paid date
    Harry | ????????? | 12/7/09

    The ? is the data that i am looking for. The closest date after the 12/7/09 is the 14/07/09 and therefore should come back with:

    Sheet2
    name | reference | paid date
    Harry | BA1235 | 12/7/09

    Note that the look up value in this case is "Harry" with the date closest to "12/7/09" to return the value X. This is very similar to vlookup except that vlookup but with the "between dates" part added.

    How do I do this?

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Lookup between values problem

    If we can assume (per your sample data) that Sheet1 is ordered in so far as each name is listed in terms of shipped date in ascending order (ie the next Harry entry will be > 23/10/09) then you could use something like

    Sheet2!B2:
    =INDEX(Sheet1!$B$2:$B$100,MATCH(1,INDEX((Sheet1!$A$2:$A$100=$A2)*(Sheet1!$C$2:$C$100>$C2),0),0))
    change ranges to suit but no do not make ranges overly large (ie keep as lean as possible)

+ 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