+ Reply to Thread
Results 1 to 14 of 14

Multiple Match/Index for Individual Tabs

Hybrid View

hartjohnson Multiple Match/Index for... 07-11-2016, 02:06 PM
JohnTopley Re: Multiple Match/Index for... 07-11-2016, 03:02 PM
hartjohnson Re: Multiple Match/Index for... 07-11-2016, 03:14 PM
hartjohnson Re: Multiple Match/Index for... 07-12-2016, 11:29 AM
Pete_UK Re: Multiple Match/Index for... 07-12-2016, 11:40 AM
hartjohnson Re: Multiple Match/Index for... 07-12-2016, 12:15 PM
Pete_UK Re: Multiple Match/Index for... 07-12-2016, 12:35 PM
Sinon05 Re: Multiple Match/Index for... 07-12-2016, 11:40 AM
hartjohnson Re: Multiple Match/Index for... 07-13-2016, 04:41 PM
Pete_UK Re: Multiple Match/Index for... 07-13-2016, 06:47 PM
  1. #1
    Registered User
    Join Date
    10-29-2015
    Location
    California
    MS-Off Ver
    Mac 2011
    Posts
    25

    Angry Multiple Match/Index for Individual Tabs

    Hey everyone!

    Having a major brain fart.

    First off, here is the link to the workbook I am working with: This is a Google Sheet (I know, I want it in Excel but several people that will need access to this do not have Excel) https://docs.google.com/spreadsheets...it?usp=sharing

    What I am trying to accomplish is for the data to pull from the 'Business by Rep' sheet to the corresponding Rep sheet. For example, Test 1 is Hart's business so it should only display on his tab.

    I hope this makes sense, I think a nested If should work, but not really getting it to display multiple results like I want.

    I do have a formula that works and shows the first result, but I can't get it to show multiple results properly

    Thanks in advance everyone!
    Last edited by hartjohnson; 07-11-2016 at 03:25 PM.

  2. #2
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,743

    Re: Multiple Match/Index for Individual Tabs

    Please post a file to the forum as many members do not wish to visit file-hosting sites.

  3. #3
    Registered User
    Join Date
    10-29-2015
    Location
    California
    MS-Off Ver
    Mac 2011
    Posts
    25

    Re: Multiple Match/Index for Individual Tabs

    Quote Originally Posted by JohnTopley View Post
    Please post a file to the forum as many members do not wish to visit file-hosting sites.
    Hi John:

    It isnt a file hosting site. This is housed in Google Sheets (I have to do it there for multiple people to have access that don't have excel).

  4. #4
    Registered User
    Join Date
    10-29-2015
    Location
    California
    MS-Off Ver
    Mac 2011
    Posts
    25

    Re: Multiple Match/Index for Individual Tabs

    Hi guys! I uploaded a sample data set in Excel format if it makes it easier. Thanks! Still stuck
    Attached Files Attached Files

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

    Re: Multiple Match/Index for Individual Tabs

    You can put this in D2 of the Rep_Sheet:

    =IF(B2="","-",B2&"_"&COUNTIF(B$2:B2,B2))

    Copy down as far as you wish to (the hyphens will show where the formula is active, to help you cope with new data being added).

    Then you can put this formula in A3 of the subsidiary sheets:

    =IFERROR(INDEX('Rep Sheet'!A:A,MATCH($A$1&"_"&ROWS($1:1),'Rep Sheet'!$D:$D,0)),"")

    Copy across and down, as required.

    Note: you will need to change the name in cell A1 of the Hart sheet.

    Hope this helps.

    Pete

  6. #6
    Registered User
    Join Date
    10-29-2015
    Location
    California
    MS-Off Ver
    Mac 2011
    Posts
    25

    Re: Multiple Match/Index for Individual Tabs

    Quote Originally Posted by Pete_UK View Post
    You can put this in D2 of the Rep_Sheet:

    =IF(B2="","-",B2&"_"&COUNTIF(B$2:B2,B2))

    Copy down as far as you wish to (the hyphens will show where the formula is active, to help you cope with new data being added).

    Then you can put this formula in A3 of the subsidiary sheets:

    =IFERROR(INDEX('Rep Sheet'!A:A,MATCH($A$1&"_"&ROWS($1:1),'Rep Sheet'!$D:$D,0)),"")

    Copy across and down, as required.

    Note: you will need to change the name in cell A1 of the Hart sheet.

    Hope this helps.

    Pete
    What do I need to change the name to in A1? Im a bit confused.
    Last edited by hartjohnson; 07-12-2016 at 12:20 PM.

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

    Re: Multiple Match/Index for Individual Tabs

    It should be Hart. In the file you attached it was Ben (copied from the Ben sheet).

    Hope this helps.

    Pete

  8. #8
    Registered User
    Join Date
    10-29-2015
    Location
    California
    MS-Off Ver
    Mac 2011
    Posts
    25

    Re: Multiple Match/Index for Individual Tabs

    Quote Originally Posted by Pete_UK View Post
    It should be Hart. In the file you attached it was Ben (copied from the Ben sheet).

    Hope this helps.

    Pete
    So it is working, but wont pull the first result for either person. It starts with whatever the second data set is for that person.

  9. #9
    Registered User
    Join Date
    08-06-2015
    Location
    England
    MS-Off Ver
    2013
    Posts
    68

    Re: Multiple Match/Index for Individual Tabs

    You can try other formulae than the one I used by searching on google for "excel lookup multiple results".

    The one I used is:

    http://www.get-digital-help.com/2009...okup-in-excel/

    When you apply the formula in your workbook update the ranges. Not sure how well this will work in google sheets though.
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    10-29-2015
    Location
    California
    MS-Off Ver
    Mac 2011
    Posts
    25

    Re: Multiple Match/Index for Individual Tabs

    That works!!! Thanks!!!!!!!!!!!!! YIPPEE!!!!

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

    Re: Multiple Match/Index for Individual Tabs

    Glad to hear it - thanks for feeding back.

    Pete

+ 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. trying use index match to pull information from database to individual sheet
    By garvey1973 in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 11-20-2015, 07:33 PM
  2. Index Match Across Multiple Tabs?
    By ratherbeknitting in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 07-28-2015, 11:46 PM
  3. Index Match Across Tabs
    By tryingtoexcelatexcel in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 06-18-2015, 01:41 AM
  4. Item Match between TABS (Index,Match???)
    By jespo1351 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 12-02-2014, 03:28 PM
  5. Match Index from Data sheet to Individual Sheet
    By dawnmau in forum Excel General
    Replies: 5
    Last Post: 06-21-2010, 02:47 PM
  6. Index & Match - Individual Cells
    By Harlequin in forum Excel General
    Replies: 4
    Last Post: 08-16-2007, 11:24 AM

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