+ Reply to Thread
Results 1 to 7 of 7

Match and Find Matrix Values with Criteria

  1. #1
    Forum Contributor
    Join Date
    04-02-2008
    Location
    Jacksonville Beach, Florida
    MS-Off Ver
    Microsoft Excel 2003 and 2010
    Posts
    264

    Smile Match and Find Matrix Values with Criteria

    Need a formula that searches a matrix, locates a range associated with two input values and then finds the nearst value to a third given input (eg 2.6) THAT is not higher than this value (2.6). "Black" and "cheese" in attached example correlate with the "range" values 1, 2, 3 and 12). The expected result would be 2 given the three inputs because 2 is the closest number to 2.6 that is not above 2.6…..help is MUCH APPRECIATED. Very important project here….
    Attached Files Attached Files
    Last edited by dreicer_Jarr; 04-06-2012 at 12:18 PM.
    ______________________________________
    "Vision without Execution is a Hallucination"
    Edison

  2. #2
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Match and Find Matrix Values with Criteria

    dreicer_Jarr,

    Using your example workbook, this formula should work:
    Please Login or Register  to view this content.
    Hope that helps,
    ~tigeravatar

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

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

    Re: Match and Find Matrix Values with Criteria

    Try this "array formula"

    =MAX(IF(B9:C9=C6,IF(A10:A16=C5,IF(B10:C16<=C4,B10:C16))))

    confirmed with CTRL+SHIFT+ENTER
    Audere est facere

  4. #4
    Forum Contributor
    Join Date
    04-02-2008
    Location
    Jacksonville Beach, Florida
    MS-Off Ver
    Microsoft Excel 2003 and 2010
    Posts
    264

    Re: Match and Find Matrix Values with Criteria

    PERFECT! It look me about ten minutes because I needed to apply the simplified example to the more complicated model, but it works perfect! You are an Excel genious! Thanks again.

  5. #5
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Match and Find Matrix Values with Criteria

    dreicer_Jarr,

    On the chance that you're talking about the formula I provided (which I'm assuming because what I provided is long and would probably take about 10 min to adjust, lol), then you're welcome

    However, I feel that it should be stated that DLL's formula will work better than mine because it has fewer function calls and mine calculates like an array formula anyway ^_^

  6. #6
    Forum Contributor
    Join Date
    04-02-2008
    Location
    Jacksonville Beach, Florida
    MS-Off Ver
    Microsoft Excel 2003 and 2010
    Posts
    264

    Re: Match and Find Matrix Values with Criteria

    They both work great. Must say DaddyLongLegs solve was much easier to implement --- though I hear you should avoid array formulas.

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

    Re: Match and Find Matrix Values with Criteria

    Quote Originally Posted by dreicer_Jarr View Post
    ....though I hear you should avoid array formulas.....
    In this situation I would think that it's the most efficient way

    You can alter my suggestion so that it doesn't require CSE, i.e. this version

    =MAX(INDEX((B9:C9=C6)*(A10:A16=C5)*(B10:C16<=C4)*B10:C16,0))

    [assuming you don't ever expect the result to be a negative number]

    ....but actually the multiplication in that probably makes it marginally less efficient than using my previous suggestion with IFs

+ 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