+ Reply to Thread
Results 1 to 16 of 16

Large Data - Index Match Match with another function?

  1. #1
    Registered User
    Join Date
    08-18-2017
    Location
    Charlotte, NC, USA
    MS-Off Ver
    Microsoft 2016
    Posts
    74

    Large Data - Index Match Match with another function?

    Hello,

    I'm looking for some help with a large set of data that I can pull certain numbers from to create an interactive graph. I'm familiar with the IndexMatchMatch function but the issue that I have is that the data has the same cell name in each particular "store", so I can't wrap my head around how I can specify a store and the right data.

    For example, Lets say I want to pull Rental Income from Store 2, not store 1,3,4, etc. for Feb 2014. I've attached a small sample of the data with random numbers. Hope you guys could help me out with this project. The alternative is to make an indexmatchmatch for each store, but I'm hoping there's another solution.

    Thanks in advance.
    Attached Files Attached Files

  2. #2
    Registered User
    Join Date
    09-08-2016
    Location
    Rogers
    MS-Off Ver
    2013
    Posts
    13

    Re: Large Data - Index Match Match with another function?

    Hate to ask stupid questions but 1) is all your data in this format and 2) what is the max store number in your data?

  3. #3
    Registered User
    Join Date
    08-18-2017
    Location
    Charlotte, NC, USA
    MS-Off Ver
    Microsoft 2016
    Posts
    74

    Re: Large Data - Index Match Match with another function?

    1) The data doesn't have to fit this format - what do you recommend?
    2) The max number of stores changes as we acquire and sell. If a max helps with a formula, then let's say 200.

  4. #4
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,036

    Re: Large Data - Index Match Match with another function?

    One possibility... out of many.
    Attached Files Attached Files
    Last edited by Glenn Kennedy; 10-12-2017 at 08:51 AM.
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU.

    Temporary addition of accented to illustrate ongoing problem to the TT: L? fh?ile P?draig sona dhaoibh

  5. #5
    Registered User
    Join Date
    08-18-2017
    Location
    Charlotte, NC, USA
    MS-Off Ver
    Microsoft 2016
    Posts
    74

    Re: Large Data - Index Match Match with another function?

    I would like the worksheet to hold all the stores - that way I don't have to go through several sheets.

  6. #6
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,036

    Re: Large Data - Index Match Match with another function?

    see post 4 above..

  7. #7
    Registered User
    Join Date
    08-18-2017
    Location
    Charlotte, NC, USA
    MS-Off Ver
    Microsoft 2016
    Posts
    74

    Re: Large Data - Index Match Match with another function?

    Thanks Glenn - I think I can work with that.

    I marked it as Solved, but I have one additional question. I don't see where it states which date I want the numbers pulled form. So if I wanted Feb 2014 or if I wanted June 2015, etc.
    Last edited by d7882; 10-12-2017 at 08:59 AM.

  8. #8
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,036

    Re: Large Data - Index Match Match with another function?

    Oh pooh. I missed that bit. leave it with me for a moment.

  9. #9
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,036

    Re: Large Data - Index Match Match with another function?

    Try this...
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    08-18-2017
    Location
    Charlotte, NC, USA
    MS-Off Ver
    Microsoft 2016
    Posts
    74

    Re: Large Data - Index Match Match with another function?

    Great stuff - I'll have to study that formula.

    Thanks again!

  11. #11
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,036

    Re: Large Data - Index Match Match with another function?

    You're welcome.



    If that takes care of your original question, please select "Thread Tools" from the menu link above and mark this thread as SOLVED.

    It'd also be appreciated if you were to click the Add Reputation button at the foot of any of the posts of all members who helped you reach a solution.

  12. #12
    Registered User
    Join Date
    09-08-2016
    Location
    Rogers
    MS-Off Ver
    2013
    Posts
    13

    Re: Large Data - Index Match Match with another function?

    Quote Originally Posted by d7882 View Post
    1) The data doesn't have to fit this format - what do you recommend?
    2) The max number of stores changes as we acquire and sell. If a max helps with a formula, then let's say 200.
    Looks like Glenn beat me to the solve and did so in a cleaner way. Cheers!

  13. #13
    Registered User
    Join Date
    08-18-2017
    Location
    Charlotte, NC, USA
    MS-Off Ver
    Microsoft 2016
    Posts
    74

    Re: Large Data - Index Match Match with another function?

    Glenn - if you have time, do you think you could go through the formula for others to read and learn?

    Personally, I'm not too familiar with why we're +Match, then -Match

    Then there's the -Match(True,index(isnumber###) functions that's really throwing me off.

  14. #14
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,036

    Re: Large Data - Index Match Match with another function?

    Off the bumpy bus... at a stable table... and a simpler formula.

    =INDEX(Sheet1!$C:$Z,MATCH(A2,Sheet1!$B$2:$B$80,0)+MATCH(B2,Sheet1!$B$2:$B$80,0),MATCH(C2,Sheet1!$C$2:$Z$2,0))

    Red: Locate the row with the store (returns 1 in the sheet)

    Orange Locate the row with the category (returns 2 in the sheet). Since the rows are always int he same order, this efectively acts like OFFSET, adding on the correct number of rows to return the correct Excel sheet row

    Cyan: locates the correct date column

    Blue: Now you have the correct row and column... The result is returned from the 2D array
    Attached Files Attached Files

  15. #15
    Registered User
    Join Date
    08-18-2017
    Location
    Charlotte, NC, USA
    MS-Off Ver
    Microsoft 2016
    Posts
    74

    Re: Large Data - Index Match Match with another function?

    That's a cleaner look - thanks

  16. #16
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,036

    Re: Large Data - Index Match Match with another function?

    The previous one was written on a bus journey down to Dublin, laptop on my knee.

    Glad it's sorted. So....


    You're welcome.



    If that takes care of your original question, please select "Thread Tools" from the menu link above and mark this thread as SOLVED.

    It'd also be appreciated if you were to click the Add Reputation button at the foot of any of the posts of all members who helped you reach a solution.

+ 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 Function for Large Array
    By takeawalkk in forum Excel General
    Replies: 10
    Last Post: 08-24-2017, 02:55 PM
  2. [SOLVED] Accounting for duplicates with LARGE function (within index match)
    By quart in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 04-28-2017, 10:38 AM
  3. [SOLVED] INDEX/MATCH Array within LARGE Function?
    By DZ217 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 08-12-2015, 11:18 AM
  4. Problems applying INDEX-MATCH-MATCH function on other data
    By LennartB in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 05-13-2015, 05:33 AM
  5. How to: Return next value w/ same # in index match large function?
    By Yoshi in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 03-06-2015, 02:35 AM
  6. Index match with large function
    By morobo in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-19-2014, 02:27 PM
  7. Using Index & Match with the Large function
    By JXH in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-24-2011, 08:39 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