+ Reply to Thread
Results 1 to 4 of 4

Index and Match functions

  1. #1
    Registered User
    Join Date
    05-31-2010
    Location
    Saskatoon, Canada
    MS-Off Ver
    Excel 2007
    Posts
    5

    Index and Match functions

    I am looking for a formula to look up and match data in 2 columns. Sheet1 contains the information. Sheet2 is where the inputs are made. In Sheet2 I want to match column A and B to the data in Sheet1 and have ColumnC in sheet2 to have the same output as the matched of columns A&B of the same row. Hopefully I have been clear enough in here and in the attachment. Thanks for your help.
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    12-15-2009
    Location
    Chicago, IL
    MS-Off Ver
    Microsoft Office 365
    Posts
    3,177

    Re: Index and Match functions

    in C2, enter with Ctrl + Shift + Enter altogether =INDEX(Sheet1!$C$2:$C$11,MATCH(A2&B2,Sheet1!$A$2:$A$11&Sheet1!$B$2:$B$11,0))

  3. #3
    Forum Expert Paul's Avatar
    Join Date
    02-05-2007
    Location
    Wisconsin
    MS-Off Ver
    2016/365
    Posts
    6,887

    Re: Index and Match functions

    Hi Bmark,

    Two options for you:

    1. Use the following array formula in C2 on Sheet2. This must be confirmed using CTRL+SHIFT+ENTER, not just ENTER.

    =INDEX(Sheet1!$C$2:$C$11,MATCH(A2&B2,Sheet1!$A$2:$A$11&Sheet1!$B$2:$B$11,0))

    Fill that down column C as many rows as needed.

    2. Use non-array formulas: Create a concatenated column on each sheet that joins the values in columns A and B. For example, on Sheet1 insert a column to the left of column A and in the new (blank) cell A2 use:

    =B2&C2

    Fill that down as many rows as you have data.

    On Sheet2, insert a new column to the left of column A, and in the new (blank) cell A2 use:

    =B2&C2

    Fill that down as many rows as necessary. Then in the Number column (now column D), cell D2 use:

    =VLOOKUP(A2,Sheet1!$A:$D,4,0)

    This prevents you from having to use multiple array formulas.

  4. #4
    Registered User
    Join Date
    05-31-2010
    Location
    Saskatoon, Canada
    MS-Off Ver
    Excel 2007
    Posts
    5

    Re: Index and Match functions

    Thanks for your help!

+ 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