+ Reply to Thread
Results 1 to 8 of 8

Lack of understanding Index and match, and small formulas

  1. #1
    Registered User
    Join Date
    10-30-2013
    Location
    Boise, ID
    MS-Off Ver
    Excel 2010
    Posts
    36

    Lack of understanding Index and match, and small formulas

    I am having difficulty understanding how to combine the index, match and small functions in excel to search and return data in my spreadsheets. Does anyone have a good reference website that explains this? or the name of a book I can check out at the library?

    Any help would be great!

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,602

    Re: Lack of understanding Index and match, and small formulas

    One example:

    Formula: copy to clipboard
    Please Login or Register  to view this content.


    where n is number 1,2,3...
    Value 1 is for minimum value in range, 2 is second minimum and so on.

  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,731

    Re: Lack of understanding Index and match, and small formulas

    Quote Originally Posted by lreed View Post
    I am having difficulty understanding how to combine the index, match and small functions in excel ...
    We are here to help you improve your understanding in those areas - do you have a particular problem you would like some help with?

    Pete

  4. #4
    Registered User
    Join Date
    10-30-2013
    Location
    Boise, ID
    MS-Off Ver
    Excel 2010
    Posts
    36

    Re: Lack of understanding Index and match, and small formulas

    Sorry it took so long to answer. I have a spreadsheet that I am trying to work with to creat a quick search for a department. I want to be able to enter a partial word in excel like "monitor" or "Printer", in cell A9 and have the spreadsheet return all possible parts, the severity of the repair and impact based on the corresponding tab. on the below lines. This would be the blue section of the attached spreadsheet on the "entry sheet". I know this is do-able, I have seen the formula before but am not understanding how to correctly put it together. I am pretty sure it is a combination of the index formula, with either match or small. If you look at the formula written in A10, you will see my attempt at the formula. If I can get it to work with the 1st vendor (blue section)I can figure out the formula for the second vendor (grey section) on the tab marked Entry sheet.
    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
    24,731

    Re: Lack of understanding Index and match, and small formulas

    Is the attached file something like you are looking for? Let me know if you want to know how it works.

    Hope this helps.

    Pete
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    10-30-2013
    Location
    Boise, ID
    MS-Off Ver
    Excel 2010
    Posts
    36

    Re: Lack of understanding Index and match, and small formulas

    Yes this is PERFECT! I do want it broken down as I have additional spreadsheets that I need to apply the same procedure to. Looks like you broke it down into multiple formulas, so it isn't as difficult as I was trying to make it.
    Last edited by lreed; 04-09-2014 at 01:23 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
    24,731

    Re: Lack of understanding Index and match, and small formulas

    On the NCR and TOLT sheets I have used column E as a helper column with this formula in E16 of the NCR sheet:

    =IF(ISNUMBER(SEARCH('Entry Sheet'!$C$9,A16)),MAX(E$15:E15)+1,"-")

    This is looking to see if the word or phrase you have chosen in cell C9 of the Entry sheet is contained anywhere in cell A16 - if it is then a counter is incremented, giving a unique number for that record, but if not then a hyphen is returned, which helps to show that the formula is active (and you can see where the formula has been copied down to). The formula needs to be copied down beyond your data, in order to cope with more data being added. A similar formula is used in the TOLT sheet, though the row references are different as you have fewer header rows.

    I've inserted two new columns A and B in the entry sheet for two other helper formulae - these columns can be hidden after the formulae have been set up if you want the sheet to look like it was before. This formula is in A10:

    =IFERROR(MATCH(ROWS($1:1),NCR!E:E,0),"-")

    This returns the row where the record number 1 is shown in column E of the NCR sheet. When the formula is copied down the term ROWS($1:1) becomes ROWS($1:2) (returning 2), then ROWS($1:3) (returning 3), and so on, which means that the formula is looking for record 1, then record 2, then record 3 etc. on subsequent rows, and returns the row in the NCR sheet where that record occurs. The formula in B10 is very similar, although it is looking for the record numbers in column E of the TOLT sheet. Again, a hyphen is returned when there is no match, indicating how far the formula has been copied down.

    This formula is in C10 of the Entry sheet:

    =IF(OR($A10="",$A10="-"),"",INDEX(NCR!A:A,$A10))

    which gets the data from column A of the NCR sheet on the row where the record number 1 occurs in column E. When this formula is copied across to F10, it gets the data from columns B, C and D of the NCR sheet , in turn. A similar formula in G10 gets the data from column A of the TOLT sheet where the record number 1 occurs on that sheet, and the formula in H10 gets the data from column C. All these formulae can be copied down as far as you think you need them - I copied to row 50.

    Then all you need to do is change the choice in cell G9 (e.g. to server) and then the display will automatically change.

    Hope this helps.

    Pete

  8. #8
    Registered User
    Join Date
    10-30-2013
    Location
    Boise, ID
    MS-Off Ver
    Excel 2010
    Posts
    36

    Re: Lack of understanding Index and match, and small formulas

    This really does help, thank you so much for all your time and effort.

+ 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. Array/Index/Match/small formulas- creating a quick search
    By lreed in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 03-25-2014, 06:06 PM
  2. problems using SMALL and INDEX(MATCH) in a table
    By lookingforhelp2014 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 02-16-2014, 11:12 AM
  3. Index( Match( Small( If
    By TravCAH in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 12-30-2013, 08:41 AM
  4. Replies: 0
    Last Post: 05-15-2013, 05:05 AM
  5. Match/index/large/small - need for top and low scores
    By Lenisghio in forum Excel General
    Replies: 1
    Last Post: 05-29-2012, 10:13 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