+ Reply to Thread
Results 1 to 4 of 4

Index Match 3 Cells and Lookup Value

  1. #1
    Valued Forum Contributor
    Join Date
    03-03-2009
    Location
    UK
    MS-Off Ver
    MS365 Subscription Excel for Mac
    Posts
    1,017

    Index Match 3 Cells and Lookup Value

    On Sheet1 in cell i1, J1 and K1 I have data.

    I want a formula that looks at what is in i1 and tries to find a match on Sheet2 column D, looks at J1 and tries to find a match on Sheet2 Column B and looks at K1 and tries to find a match on Sheet2 Column C.

    If all 3 on a row match then I want it to return what is in Column Z on the row where the match is found on Sheet2.

  2. #2
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.84 (24041420))
    Posts
    8,753

    Re: Index Match 3 Cells and Lookup Value

    =INDEX(Sheet2!Z1:Z10,MATCH(i1&j1&k1,Sheet2!D1:D10&Sheet2!B1:B10&Sheet2!C1:C10,0))

    use control + shift + enter for an array formula
    changes the formula to

    {=INDEX(Sheet2!Z1:Z10,MATCH(i1&j1&k1,Sheet2!D1:D10&Sheet2!B1:B10&Sheet2!C1:C10,0))}

    Just confirm
    i1 Matches D
    J1 Matches B
    K1 Matches C
    Wayne
    if my assistance has helped, and only if you wish to , there is an "* Add Reputation" on the left hand side - you can add to my reputation here

    If you have a solution to your thread - Please mark your thread solved do the following: >
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

  3. #3
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,788

    Re: Index Match 3 Cells and Lookup Value

    You can use this array* formula:

    =IFERROR(INDEX(Sheet2!$Z$1:$Z$1000,MATCH(I1&J1&K1,Sheet2!$D$1:$D$1000&Sheet2!$B$1:$B$1000&Sheet2!$C$1:$C$1000,0)),"")

    I've assumed that your data occupies up to 1000 rows on Sheet2 - adjust the ranges if necessary.

    *An array formula needs to be confirmed using the key combination of Ctrl-Shift-Enter (CSE), rather than the usual < Enter >.

    Hope this helps.

    Pete

  4. #4
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2016
    Posts
    5,914

    Re: Index Match 3 Cells and Lookup Value

    Or this regular formula:
    =IFERROR(LOOKUP(2,1/(Sheet2!D1:D10=I1)/(Sheet2!B1:B10=J1)/(Sheet2!C1:C10=K1),Sheet2!Z1:Z10),"")

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Match-Index in stead of Index-Match lookup Array among Arrays
    By Numnum in forum Excel General
    Replies: 2
    Last Post: 10-15-2015, 02:08 PM
  2. Using Lookup? Index match? to populate cells based on column header
    By NoExcelSkills17 in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 01-15-2015, 03:50 PM
  3. Replies: 6
    Last Post: 04-30-2014, 02:42 AM
  4. Replies: 3
    Last Post: 06-17-2013, 12:37 PM
  5. Match/Index/Lookup - Searching From Bottom to Top (A reverse lookup maybe)
    By Neutralizer in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 05-02-2013, 03:55 AM
  6. [SOLVED] How Can I Use the INDEX/MATCH Function for Multiple Lookup Cells
    By n_lindsey in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 12-30-2012, 12:31 AM
  7. Replies: 7
    Last Post: 06-19-2011, 12:51 PM

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