+ Reply to Thread
Results 1 to 3 of 3

Index and Match... I'm pretty sure I'm just doing it wrong

  1. #1
    Registered User
    Join Date
    01-08-2013
    Location
    Chicago, IL
    MS-Off Ver
    Excel 2010
    Posts
    9

    Index and Match... I'm pretty sure I'm just doing it wrong

    Hi.

    I've been trying to figure out a way to save time with some monthly reports... What I have been doing is taking my raw data (separate file), setting up a pivot table, breaking out those pivots, and then doing vlookup up against each of the new sheets in each column... let me tell you, I'm sure there is a better/faster way... and I think it has something to do with Index/Match.

    I won't bore you with all of the variations that I've tried. Here's the short version. All I want to be able to do is see who has "Completed" each training.

    I've attached my workbook. What I'm trying to do is figure out (find) the formula that will compare the Username and ID to the Training and Item Name , and if they are both there... mark the Item Status in C2:I21 on the Completed Skills sheet.



    Any help is much appreciated.
    Oh, and if you need more info, please let me know.
    Thanks.

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,933

    Re: Index and Match... I'm pretty sure I'm just doing it wrong

    That is not quite a straightforward INDEX/MATCH, although you were correct in using it. Try this ARRAY formula, copied down and across...

    =INDEX(RAW!$D$2:$D$123,MATCH('Completed Skills'!$A2&'Completed Skills'!C$1,RAW!$A$2:$A$123&RAW!$C$2:$C$123,0))

    ...confirmed by pressing CTRL+SHIFT+ENTER to activate the array, not just ENTER. You will know the array is active when you see curly braces { } appear around your formula. If you do not CTRL+SHIFT+ENTER you will get an error or a clearly incorrect answer. Press F2 on that cell and try again.

  3. #3
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,933

    Re: Index and Match... I'm pretty sure I'm just doing it wrong

    Here is a regular formula that will do the same thing...
    =INDEX(RAW!$D$2:$D$123,MATCH($A2&C$1,INDEX(RAW!$A$2:$A$123&RAW!$C$2:$C$123,0),0))

    In both cased, to trap the errors when an ID is not found, you can wrap them in an IFERROR() function...
    =IFERROR(INDEX(RAW!$D$2:$D$123,MATCH($A2&C$1,INDEX(RAW!$A$2:$A$123&RAW!$C$2:$C$123,0),0)),"put whatever text you want here, or leave it blank")
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

+ 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] What's wrong with this Index Match/Row formula?
    By DaveBre in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 02-25-2014, 08:37 PM
  2. [SOLVED] Index Match finding wrong month's value
    By wf44 in forum Excel Formulas & Functions
    Replies: 15
    Last Post: 01-29-2014, 11:40 AM
  3. [SOLVED] Index Match Question - What am I doing wrong?
    By JackieAdams in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 07-27-2012, 04:43 PM
  4. Index + Match, Repeating wrong data ???
    By TeamB in forum Excel General
    Replies: 1
    Last Post: 05-04-2009, 11:03 AM
  5. Index and Match-wrong value
    By Steved in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 03-13-2005, 07:06 PM

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