How to Vlookup multiple values in Excel with criteria

The tutorial shows a few ways to Vlookup multiple matches in Excel based on one or more conditions and return multiple results in a column, row or single cell.

When using Microsoft Excel for data analysis, you may often find yourself in situations when you need to get all matching values for a specific id, name, email address or some other unique identifier. An immediate solution that comes to mind is using the Excel VLOOKUP function, but the problem is that it can only return a single match.

Vlookup for multiple values can be done via a combined use of several functions. If you are far from being an Excel expert, don't hurry to leave this page. I will do my best to explain the underlying logic so that even a novice could understand the formulas and adjust them for solving similar tasks. Even better, I will show you another possible solution that takes just a few mouse clicks and does not require any knowledge of Excel formulas at all!

How to do multiple Vlookup in Excel using a formula

As mentioned in the beginning of this tutorial, there is no way to make Excel VLOOKUP return multiple values. The task can be accomplished by using the following functions in an array formula:

  • IF - evaluates the condition and returns one value if the condition is met, and another value if the condition is not met.
  • SMALL - gets the k-th smallest value in the array.
  • INDEX - returns an array element based on the row and column numbers you specify.
  • ROW - returns the row number.
  • COLUMN - returns the column number.
  • IFERROR - traps errors.

Below you will find a few examples of such formulas.

Formula 1. Vlookup multiple matches and return results in a column

Let's say, you have the seller names in column A and the products they sold in column B, column A containing a few occurrences of each seller. Your goal is to get a list of all products sold by a given person. To have it done, please follow these steps:

  1. Enter a list of unique names in some empty row, in the same or another worksheet. In this example, the names are input in cells D2:G2:
    The source data to Vlookup multiple matches in Excel

    Tip. To quickly get all different names in a list, you can use the UNIQUE function in Excel 365 or a more complex formula to extract distinct values in older versions.

  2. Under the first name, select a number of empty cells that is equal to or greater than the maximum number of possible matches, enter one of the following array formulas in the formula bar, and press Ctrl + Shift + Enter to complete it (in this case, you will be able to edit the formula only in the entire range where it's entered). Or, you can enter the formula in the first cell, hit Ctrl + Shift + Enter, and then drag the formula down to a few more cells (in this case, you will be able to edit the formula in each cell individually).

    =IFERROR(INDEX($B$3:$B$13, SMALL(IF(D$2=$A$3:$A$13, ROW($B$3:$B$13)-2,""), ROW()-2)),"")

    or

    =IFERROR(INDEX($B$3:$B$13,SMALL(IF(D$2=$A$3:$A$13,ROW($A$3:$A$13)- MIN(ROW($A$3:$A$13))+1,""), ROW()-2)),"")

    As you see, the 1st formula is a bit more compact, but the 2nd one is more universal and requires fewer modifications (we will elaborate more on the syntax and logic a bit further).

  3. Copy the formula to other columns. For this, select the range of cells where you've just entered the formula, and drag the fill handle (a small square at the lower right-hand corner of the selected range) to the right.

The result will look something similar to this:
A formula to Vlookup multiple values and return results in a column

How this formula works

This is an example of intermediate to advanced uses of Excel that implies basic knowledge of array formulas and Excel functions. Working from the inside out, here's what you do:

  1. IF function

    At the core of the formula, you use the IF function to get the positions of all occurrences of the lookup value in the lookup range: IF(D$2=$A$3:$A$13, ROW($B$3:$B$13)-2,"")

    IF compares the lookup value (D2) with each value in the lookup range (A3:A13), and if the match if found, returns the relative position of the row; an empty string ("") otherwise.

    The relative positions of the rows are calculated by subtracting 2 from ROW($B$3:$B$13) so that the first row has position 1. If your return range begins in row 2, then subtract 1, and so on. The result of this operation is the array {1;2;3;4;5;6;7;8;9;10;11}, which goes to the value_if_true argument of the IF function.

    Instead of the above calculation, you can use this expression: ROW(lookup_column)- MIN(ROW(lookup_column))+1, which returns the same result but does not require any changes regardless of the return column location. In this example, it'd be ROW($A$3:$A$13)- MIN(ROW($A$3:$A$13))+1.

    So, at this point you have an array consisting of numbers (positions of matches) and empty strings (non-matches). For cell D3 in this example, we have the following array:
    An array with the positions of matches and empty strings for non-matches

    If you check with the source data, you will see that "Adam" (lookup value in D2) appears on the 3rd, 8th and 10th positions in the lookup range (A3:A13).

  2. SMALL function
    Next, the SMALL(array, k) function steps in to determine which of the matches should be returned in a specific cell.

    With array already established, let's work out the k argument, i.e. the k-th smallest value to be returned. For this, you make a sort of an "incremental counter" ROW()-n, where "n" is the row number of the first formula cell minus 1. In this example, we entered the formula in cells D3:D7, so ROW()-2 returns "1" for cell D3 (row 3 minus 2), "2" for cell D4 (row 4 minus 2), etc.

    As the result, the SMALL function pulls the 1st smallest element of the array in cell D3, the 2nd smallest element in cell D4, and so on. And this transforms the initial long and complex formula into a very simple one, like this:
    The position of the matching value to be returned in a given cell

    Tip. To see the calculated value behind a certain part of the formula, select that part in the formula bar and press F9.

  3. INDEX function

    This part is easy. You use the INDEX function to return the value of an array element based on its row number.

  4. IFERROR function

    And finally, you wrap the formula in the IFERROR function to handle possible errors, which are inevitable because you cannot know how many matches will be returned for this or that lookup value, and therefore you copy the formula to a number of cells equal to or greater than the number of possible matches. Not to scare your users with a bundle of errors, simply replace them with an empty string (blank cell).

Note. Please notice the proper use of absolute and relative cell references in the formula. All references are fixed except for the relative column reference in the lookup value (D$2), which should change based on a relative position of a column(s) where the formula is copied to return matches for other lookup values.

Putting all this together, we get the following generic formulas to Vlookup multiple values in Excel:

Formula 1:

IFERROR(INDEX(return_range, SMALL(IF(lookup_value = lookup_range, ROW(return_range )- m ,""), ROW() - n )),"")

Formula 2:

IFERROR(INDEX(return_range, SMALL(IF(lookup_value = lookup_range , ROW(lookup_range) - MIN(ROW(lookup_range ))+1,""), ROW() - n)),"")

Where:

  • m is the row number of the first cell in the return range minus 1.
  • n is the row number of the first formula cell minus 1.

Note. In the above example, both n and m are equal to "2" because our return range and formula range both begin in row 3. In your worksheets, these may be different numbers.

Formula 2. Vlookup multiple matches and return results in a row

In case you want to return multiple values in rows rather than columns, change the above formulas this way:

=IFERROR(INDEX($B$3:$B$13, SMALL(IF($D3=$A$3:$A$13, ROW($B$3:$B$13)-2,""), COLUMN()-4)),"")

Or

=IFERROR(INDEX($B$3:$B$13,SMALL(IF($D3=$A$3:$A$13,ROW($A$3:$A$13)- MIN(ROW($A$3:$A$13))+1,""),COLUMN()-4)), "")

Like in the previous example, both are array formulas, so remember to press the Ctrl + Shift + Enter shortcut to complete them correctly.
Formula to Vlookup multiple matches and return results in rows

The formulas work with the same logic as in the previous example, except that you use the COLUM function instead of ROW to determine which matching value should be returned in a specific cell: COLUMN()-n. Where n is the column number of the first cell where the formula is entered minus 1. In this example, the formula is input in cells E2:H2. With E being the 5th column, n is equal to "4" (5-1=4).

Note. For the formula to get copied correctly to other rows, mind the lookup value references, absolute column and relative row, like $D3.

Wrapping up, here are the generic formulas for Vlookup with multiple results returned in rows:

Formula 1:

IFERROR(INDEX(return_range, SMALL(IF(lookup_value = lookup_range, ROW(return_range) - m, ""), COLUMN() - n)), "")

Formula 2:

IFERROR(INDEX(return_range, SMALL(IF(lookup_value = lookup_range, ROW(lookup_range) - MIN(ROW( lookup_range))+1,""),COLUMN() - n)), "")

Where:

  • m is the row number of the first cell in the return range minus 1.
  • n is the column number of the first formula cell minus 1.

Formula 3. Vlookup multiple matches based on multiple conditions

You already know how to Vlookup for multiple values in Excel based on one condition. But what if you want to return multiple matches based on two or more criteria? Taking the previous examples further, what if you have an additional Month column, and you are looking to get a list of all products sold by a given seller in a specific month?

If you are familiar with arrays formulas, you may remember that they allow using asterisk (*) as the AND operator. So, you can just take the formulas discussed in the two previous examples, and have them check multiple conditions as demonstrated below.

Return multiple matches in a column

IFERROR(INDEX(return_range, SMALL(IF(1=((--(lookup_value1=lookup_range1)) * ( --(lookup_value2=lookup_range2))), ROW(return_range)-m,""), ROW()-n)),"")

Where:

  • m is the row number of the first cell in the return range minus 1.
  • n is the row number of the first formula cell minus 1.

Assuming the Seller list (lookup_range1) is in A3:A30, the Month list (lookup_range2) is in B3:B30, the seller of interest (lookup_value1) is in cell E3, and the month of interest (lookup_value2) is in cell F3, the formula takes the following shape:

=IFERROR(INDEX($C$3:$C$30, SMALL(IF(1=((--($E$3=$A$3:$A$30)) * (--($F$3=$B$3:$B$30))), ROW($C$3:$C$30)-2,""), ROW()-2)),"")

This layout may be useful for creating a dashboard, e.g. your users can enter a name in E3, month in F3 and get a list of products in column G:
Vlookup with multiple criteria returning multiple matches in a column

Return multiple results in a row

If you want to pull multiple values based on multiple criteria sets, you may prefer the horizontal layout where results are returned in rows. In this case, use this following generic formula:

IFERROR(INDEX(return_range, SMALL(IF(1 = ((--(lookup_value1=lookup_range1)) * (--(lookup_value2 = lookup_range2))), ROW(return_range) - m, ""), COLUMN() - n)),"")

Where:

  • m is the row number of the first cell in the return range minus 1.
  • n is the column number of the first formula cell minus 1.

For our sample dataset, the formula goes as follows:

=IFERROR(INDEX($C$3:$C$30, SMALL(IF(1=((--($E3=$A$3:$A$30)) * (--($F3=$B$3:$B$30))), ROW($C$3:$C$30)-2,""), COLUMN()-6)),"")

And the result can resemble this:
Vlookup with multiple criteria returning multiple matches in rows

In a similar manner, you can do multiple Vlookup with three, four or more conditions.

How these formulas work

Basically, the formulas to Vlookup multiple values with multiple conditions work with the already familiar logic, explained in the very first example. The only difference is that the IF function now tests multiple conditions:

1=((--(lookup_value1=lookup_range1))*(--(lookup_value2=lookup_range2))*…)

The result of each lookup_value=lookup_range comparison is an array of logical values TRUE (condition is met) and FALSE (condition is not met). The double unary operator (--) coerces the logical values into 1's and 0's. And because multiplying by zero always gives zero, in the resulting array, you have 1 only for those elements that meet all of the specified conditions. Now, you simply compare the final array with number 1 so that the ROW function returns the numbers of rows that meet all the conditions, an empty string otherwise.

A word of caution. All of the multiple Vlookup formulas discussed in this tutorial are array formulas. As such, each formula iterates through all elements of the arrays every time the source data is changed or the worksheet is recalculated. On large worksheets containing hundreds or thousands of rows, this may significantly slow down your Excel.

If you need to get matches from several sheets, use this guide: How to VLOOKUP across multiple sheets.

How to Vlookup to return multiple values in one cell

I will be upfront - I don't know an easy way to lookup and return multiple matches in a single sell with formulas. However, I do know a formula-free (read "stress-free" :) way to do this by using two add-ins included with our Ultimate Suite for Excel. The detailed steps follow below.

Source data and expected result

As shown in the screenshot, we continue working with the dataset we've used in the previous example. But this time we want to achieve something different - instead of extracting multiple matches in separate cells, we want them to appear in a single sell, separated with a comma, space, or some other delimiter of your choosing.
Source data and expected result

Pull rows with multiple matches to the main table

In your main table, enter a list of unique names in the first column, months in the second column, and arrange them like shown in the screenshot below. After that, carry out the following steps:

  1. Select your main table or click any cell within it, and then click the Merge Two Tables button on the ribbon:
    Merge Two Tables button on the Excel ribbon
  2. The add-in is smart enough to identify and pick the entire table, so you just click Next:
    Select the main table.

    Tip. When using the tool for the first time, it stands to reason to select the Create a backup copy of the worksheet box in case something goes wrong.

  3. Select the lookup table, and click Next.
    Select the lookup table.
  4. Choose one or more matching pairs of columns that should be compared in the main table and lookup table (in this example, it's the Seller and Month columns), and then click Next.
    Choose one or more matching pairs of columns.
  5. Select the column(s) from which you want to pull matching values (Product in this example), and click Next.
    Select the column(s) from which you want to pull matching values.
  6. Tell the add-in how exactly you want multiple matches to be arranged in the main table. For this example, we need the following option: Insert rows with duplicate matching values after the row with the same value. Make sure that no other option is selected and click Finish.
    Specify how to arrange matching values.

At this point, you will have the following result - all matching rows are pulled to the main table and grouped by the values in the lookup columns - first by Seller, and then by Month:
Matching rows are pulled to the main table.

The resulting table already looks nice, but it's not exactly what we wanted, right? As you remember, we are looking to Vlookup multiple matches and have them returned in a single sell, comma or otherwise separated.

Combine duplicates rows into one row

To merge "duplicate rows" in a single row, we are going to use another tool - Combine Rows Wizard.

  1. Select the table produced by the Merge Tables tool (please see the screenshot above) or any cell within the table, and click the Combine Rows button on the ribbon:
    Combine Rows button on the ribbon
  2. Check if the add-in's got the table right, and click Next:
    Select the table.
  3. Select the key column or columns (Seller and Month in this example), and click Next:
    Select the key column(s).
  4. Select the column(s) that contains multiple matches (Product in this example), choose the desired delimiter (semicolon, comma, space or line break), and click Finish.

    Optionally, you can enable one of the additional features, or both:

    • Delete duplicate values - if the column to be merged contains a few identical values, the first occurrence will be kept, duplicate matches will be deleted.

      In this example, we do not check this option, and the add-in returns all found matches. For example, in cell C2, we have this string: Lemons, Bananas, Apples, Lemons, Bananas (please see the result on step 5 below). If you choose to delete duplicates, the result would be: Lemons, Bananas, Apples.

    • Skip empty cells - self-explanatory :)
      Select the column(s) from which you want to pull multiple values and choose the desired delimiter.
  5. Allow the add-in a few seconds for processing, and you are all set!
    Multiple matches are returned in a single sell, comma separated.

This is how you can look up and return multiple values in Excel using our tools. If you are curious to give them a try, a fully-functional evaluation version of the Ultimate Suite is available for download below.

Available downloads

Vlookup Multiple Values - examples (.xlsx file)
Ultimate Suite - trial version (.exe file)

Other ways to Vlookup in Excel

342 comments

  1. Hi Svetlana,
    It's a great post; well explained. thanks.

    A question for you:
    Is it possible to use the INDEX formula for an Excel table? I converted your Excel data to a table (Table1) and used the following formula but it does not work:
    =INDEX(Table1[[#Headers],[Product]], SMALL(IF(D$2=Table1[[#Headers],[Seller]],ROW(Table1[[#Headers],[Seller]])-MIN(ROW(Table1[[#Headers],[Seller]]))+1,""), ROW()-2))
    However, VLOOKUP works but as expected it only gives the first occurrence of the matching field:
    =VLOOKUP(D$2, Table1,2,FALSE)
    Any ideas? Many thanks.
    Abbas

  2. (E5:E19) Contians Text data and (F5:F19) contians Numric data.

  3. I need total weight of each article. Data is as under:
    Column E Column F
    Beef Mince 2
    Beef Boneless 10
    Mutton Bone-In 2
    Beef Boneless 4
    Beef Boneless 5
    Mutton Bone-In 3
    Beef Bone-In 1
    Mutton Mince 3
    Mutton Bone-In 4
    Mutton Mince 5
    Mutton Bone-In 2
    Mutton Mince 1
    Sheep Carcass 6
    Beef Mince 7
    Mutton Carcass 2
    Data Range (E5:E19) and (F5:F19)

    Kindly provide the solution.

  4. Awesome Its realy work , I have tried

  5. hello svetlana,

    would you help me, if i use this formula

    =IFERROR(INDEX($B$3:$B$13,SMALL(IF(F$2=$A$3:$A$13,ROW($A$3:$A$13)- MIN(ROW($A$3:$A$13))+1,""), ROW()-2)),"")

    with indirect function, where can i put indirect function? thank you for your guide.

  6. Hi,
    I have yet another problem.
    So I have two excel workbooks that I want to connect.
    I want for workbook B to show data from workbook A, based on a criteria of two same values in both workbooks.
    eg. I write a code given to the pupil into A3 to A92 in book B. The formula should look for that code in cell range G3:G92 in book A and give me the same code form book A in cell B3 in book B.
    I would then copy the formula trough the row because need name, surname, phone etc. and I don't want to input same data twice in cca 100 rows.

    I have tryed IF function:

    =IF(A3:A92='[PREDUPIS_prazni_prvaša lista A i B-auto.xlsm]Popis - svi'!$G$3:$G$92;'[PREDUPIS_prazni_prvaša lista A i B-auto.xlsm]Popis - svi'!$G$3:$G$92;"")

    but the formula does't do what I need.

    Can you help?

    BOOK A

    B C D E F G
    PREZIME IME Ime oca Ime majke DATUM ROĐENJA ŠIFRA=CODE
    Lopov Luka Ive Mari 13/12/2007 LLIM1
    Marica Marko Luka Marija 15/4/2010 MMLM1
    Kereta Rogic Ema - Maja 9/11/2013 KE-M9

    BOOK B

    A B C D E F G H
    Code code Prezime Ime Spol Ime oca Ime majke Datum rođ.

  7. Hi,

    I need a formula to look up column A, find all the reference values in Column B and Column C, Compare the results and if a certain combination exists then return true else false.
    A B C D
    CGP1087 12/5/1998 0 1.2
    CGP1087 12/5/1998 1.3 1.3
    CGP1087 12/5/1998 0 1.4
    CGP1087 12/6/1998 1.1 0
    CGP1058 12/5/1998 1.4 0

    Look up for CGP1087 check if there is ever a combination of 1.3 and 1.4 in Column C, Column D or Column C and D together

  8. token no name o/date
    1256 kan singh 15/10/2017 Tokan no 1256
    1257 mukesh 14/10/2017 1st o date ?
    1258 ram 17/10/2017 2nd o date ?
    1256 kan singh 17/10/2017

  9. Thank you so much for this explanation--I'm not an Excel expert and this looked really intimidating, but I was able to make it work. I've bookmarked your site for future reference!

  10. It was really helpful. Thank you.

  11. Table 1 Table 2
    AMT result AMT Unique Value2
    30 A 30 A
    40 D 30 B
    30 B 30 C
    30 C 40 D
    50 F 40 E
    50 - 50 F

    I need to pick 2nd column of 'Table 2' by comparing AMT column but the formula should pick only one unique value 1 time from 'Table 2'

  12. These formulas have worked for me but now I have a situation where I would just like a partial lookup match. Trouble is these formulas won't allow for wild cards like vlookup does. Is there a workaround for that?

    Example:
    =IF(ISERROR(INDEX($AQ$1:$AV$500,SMALL(IF($AQ$1:$AQ$500="REGULAR PAY 32.0000 ",ROW($AQ$1:$AQ$500)),ROW(1:1)),3)),"",INDEX($AQ$1:$AV$500,SMALL(IF($AQ$1:$AQ$500="REGULAR PAY 32.0000 ",ROW($AQ$1:$AQ$500)),ROW(1:1)),3))

    With this my "REGULAR PAY 32.0000 " must be an exact match when I'd just like to look for "REGULAR PAY*".

    I can do it with vlookup of course:
    =VLOOKUP("REGULAR PAY*",AQ1:AV500,3,FALSE)
    But of course it only returns the first value it finds.

  13. Hi

    Thanks very much for your explanations and tips, I've found them really useful. I used the Vlookup multiple conditions to return matches in a row and it works perfectly.

    As per your sample workbook, would there be a way of filtering out any duplicate values, for e.g. your return matches in a row for Seller Adam contains the Products 'Lemons' in both columns K and N - any way to stop that and just return one value of 'Lemons'?

    Many thanks

  14. Hello,

    My vlookup is returning values that are not in the table array.

    Any suggestions.

  15. this really helped me alot, thank you!!

  16. This is great. Thanks a lot

  17. Hi,

    I tried copy pasting the formula. Modified it for my specific columns and made sure to hit ctrl+shit+enter. The formula however only populates the first value (much like a regular VLOOKUP function. Can anyone please help?

    Thanks!

    Riyaz

  18. The worksheet table have columns (Cell B:Q)that show "Supplier Names" and the rows (15 to 33)have "Item01; Item02;and so on"
    What is required in Cell B2 if the "Item02" is typed-in, I want to find out the suppliers with the lowest 3 sales.

    Thank you, Look forward to your earliest response

  19. HI
    I need help....
    I need an IF and V lookup formula but with multi-pal ranges.
    So IF A1 = DEL then look at Cell C1 to get the size and look at Cell D1 to get the area. Look up the area price according to the size of the container. Does that make any sense?

  20. Hi svetlana,

    Appreciate if you can help me in this situation for my survey data. I am doing this to calculate for Fuzzy Delphi method

    I have:
    survey data ---> (A)
    Likert scale 1-7 ---> (B)
    Decimal point scale in 3 columns ---> (C)
    Empty cell putting (C) values after comparing (A) and (B)---> (D)

    Example as below:

    (C) (B)
    ------------------------------------------
    decimal point scale likert scale
    0.0 0.0 0.1 7
    0.0 0.1 0.1 6
    ------------------------------------------

    I have a list of survey data (A) and I want to compare with likert scale (B), if (A) is equal or more than (B), then I want to take all values in (C) and copy it in (D)

    What function should be suitable to get the return values?

    Thank you

    • (C)
      decimal point scale
      0.0 0.0 0.1
      0.0 0.1 0.1

      (B)
      likert scale
      7
      6

  21. Светлана, спасибо вам огромное за ваш форум. Начал составку очень трудного Excel spreadsheet сегодня, по знанию начиная почти с нуля по формулам. Последняя черта документа оставалась включить одну из этих формул упомянутых здесь. Туго было понимать но в конце концов понял где ошибка была, поправил и всё заработало! Как приятно что есть такие умные люди которые напишут как что делать ^^

    • Спасибо на добром слове, Егор! Приятно знать, что соотечественники нас тоже читают :)

  22. I have a working formula to return multiple values from one Worksheet: "15".
    Formula =IFERROR(INDEX('15'!$A$7:$A$41,SMALL(IF($I$1='15'!$G$7:$G$41,ROW('15'!$G$7:$G$41)-MIN(ROW('15'!G$7:$G$41))+1,""),ROW()-2)),"")

    I would like the formula above to also go through each Worksheet and return multiple values.

    I have created a working table name "Sheet_Name" that will dynamically list Worksheets 1 through 100 starting with Sheet 6, currently I have Worksheets: A, B, C, D, E, and 1 - 15 (data to return).
    Sheet_Names Formula =OFFSET(SheetNames!$C$7,,,COUNT(SheetNames!$C7:$C106),1)

  23. Well i have problem in using vlookup in pm mfsw worksheet

  24. Hi,

    I'm just wondering if Formula 3. Vlookup multiple matches based on multiple conditions can be used to retrieve data from other workbooks?
    I've tried however have not been successful.

    Many thanks

  25. hello

    Svetlana Cheusheva

    Sorry to say but your formula does't work. they have some problem while applying in practical.

    so can you help me ?

  26. How do I get the formula to search for match part of the string like APP instead of the full word APPLE?

  27. am doing food gram as per menu for one person, when it is 100 person the gram reduce same items =IFERROR(VLOOKUP($B$6:$B$32,GRAM!$A$1:$B$300,2,FALSE)," 0 " )
    this formula will look out value in gram A1:A300 FOR SAY CHICKEN for one person , I NEED IT LOOK FOR MULTIPLE1 cells where i stored for 1 pax, 100 pax 200pax etc. it has diferent grams. kindly advise.

  28. I have applied the array formula and it worked perfectly. I would now like to apply another formula to my listed results (in one column) in order to extract my distinct texts to the column next to it. My data from this formula has multiple texts vertically and I would like each unique data only repeated once (next to the first) in the next column and blanks following until the next unique text.

    Or just extracting the distinct values off of this formula.

    Is this possible?

    I look forward to your response. Thank you.

  29. i want to apply the formula on a sheet.

    like i have criteria range and infront of value if my first criteria value is 0 than for same criteria v lookup should take the value for next criteria.

    Regards

    Yogendra

  30. i want to extract two unique different column of data in to one cell from another sheet after searching through an array
    a b c(ans)
    1 4 2
    2 3 1
    3 4 2
    4 2 4

  31. Awesome tutorial, thanks a lot!

  32. Hello Svetlana,

    The issue I experienced not pulling the data was related to #N/A (error) in couple of cells. Once I replaced these values all worked fine.

  33. Sorry for the formatting above, but it only became so after I posted the message. There are currently 7 columns, one with the A/A numbers and another 6 with data. A,B,C,D,E and F are the head titles of the 6 columns with the data.

  34. Hello Svetlana.

    I have the following table. Please have a look at my question following the table.

    A B C D E F
    1 EXCB11 EXCB10 0.202 0.79 0.159 0.159
    2 EXCB10 EXCB09 0.117 0.72 0.084 0.244
    3 EXCB09 EXCB08 0.042 0.61 0.026 0.269
    4 EXCB08 EXSTMH05 0.016 0.2 0.273
    5 EXSTMH07 EXSTMH09 0.016 0.5
    6 EXSTMH08 EXSTMH07 ? ?
    7 NEWCB12 NEWSTMH04 0.152 0.76 0.115
    8 NEWSTM EXSTMH05 0.178 0.76 0.250
    9 NEWCB14 NEWSTMH15 0.093 0.83 0.078
    10 NEWSTMH15 NEWSTMH13 0.000 0.92
    11 NEWSTMH13 EXSTMH08 0.000 0.76
    12 EXSTMH0 EXSTMH05 0.019 0.59 0.089
    13 EXSTMH05 TMNT DEVICE 0.000 0.59
    14 TMNT DEVICE EXMH01 0.000 0.87 0.000

    - For every cell of column A, I am trying to find the cells in Column B that have the same value with it. For example in the given table for Cell A13 that has the value EXSTMH05, I would like to find cells B4, B8 and B12 that also have the value EXSTMH05.
    - Then, for each one of the cells that I found I want to get the values from the respective cell of Column F and sum them up. So, in the given example I would like to get the values from F4, F8 and F12 and find their sum. The result I am seeking in this example 0.273+0.250+0.089.

    Can you help me? I have tried using various formulas but to no result.

  35. Hi Svetlana,

    I wanted to ask you for your help with my table:
    https://we.tl/mMztWNG1lY

    What I would like to display in Sheet 2, is the quantity of those topics, which meet the chosen criteria and also display all corresponding texts, links and clicks, one below the other, taking in account the two criteria chosen at the top: "Category" and "Language".

    What we also have to take in account is that the categories, texts, links and clicks can be found in several columns and not just in one.

    I really hope that you can help me with this issue. :)

    Best regards,
    Sanjin

  36. Svetlana,

    Spasiba, for your quick response. Everything is working well even on large volume of data. When the data is aligned well n-1 type of configuration it works well.

    As for the "relative reference" I meant relative position. I tried multiple examples, the all worked if properly setup.

    Cheers,

    Sam

  37. Hello,
    I'm hitting a unique error with this formula. I have the formula on Sheet2, and am trying to pull the information from Sheet1, A4, titled "Expirations". In the "IF" statement, if I put the reference item to match the item in the first row of the table on sheet 1 (89), it pulls the information from A4 over after I hit Enter. If I change it match the item in row 2 (229), it doesn't pull the associated info from A5. Also, if I hit ctrl+shft+enter to use this as an array formula, it doesn't pull any results.

    My ultimate goal is to pull over all of the rows that have a negative number in Column E, so if you can offer any guidance towards that, that would be awesome. :) But in the meantime, helping me understand why the array formula isn't working between worksheets, and why it only pulls over the first item when used as a standard formula, would be awesome. The formula I'm using is:

    =IFERROR(INDEX(Expirations!A$4:A$2864, SMALL(IF(89=Expirations!$E$4:$E$2864,ROW(Expirations!A$4:A$2864)-3,""), ROW()-3)),"")

    Thank you!
    Kevin

  38. Svetlana.
    Great work. The formula works well even in Two workbooks format one for data and one for matching. Also worked when replacing relative values with Named Ranges. I extended the example to about 6000 rows, still works. Note the slight change with named ranges "D$2=Sellers, Row(Seller)" Using Row(Fruits) does not return results.

    =IFERROR(INDEX($B$3:$B$13, SMALL(IF(D$2=$A$3:$A$13, ROW($B$3:$B$13)-2,""), ROW()-2)),"")

    =IFERROR(INDEX(Fruits, SMALL(IF(D$2=Sellers, ROW(Sellers)-2,""), ROW()-2)),"")

    My trouble is, I have a very large data set (about 20K+ rows) and I get only the first value repeating for the entire array in my real work. I can't figure out where am I going wrong.

    • Hi Sam,

      Sorry, I do not quite understand the part about relative references. In the original formula, all ranges are fixed (absolute references), and in named ranges the references are also absolute by default. I've done the same replacement in the sample workbook, and it works just fine. Please see N3:Q5 in sheet "Return matches in columns". The updated file can be downloaded here.

  39. Hi Svetlana Cheusheva, in your first formula with index and Row-2 example above. I do scores for softball league and I need to look up the teams identifier (e.g. 10a) and return the date of the game. However, the column range I need to look in houses the matchups for that day's games. e.g. 10a v 10b in a cell. Can I use wildcards in the array formula (e.g. *10a*) as my look up value vs just 10a. I tried doing "*10a*", but got a Num error (took out the iferror to see why blank). Do I have to input "*"&D3(being 10a)&"*"=C2:c27, etc.??? Any guidance here is much appreciated!

  40. Wow! very well written and expressed. Exactly what I wanted the first formula itself. Thank you!

  41. i want horizontal date range Vlookup pls. provide solution

  42. This is a great help but how do I return a value of more than one cell?

    Such as if there were two more columns that had the Price and Market. I would want the result like this in individual cells:

    Adam
    Banana $2.99 Smith's
    Oranges $1.99 Von's
    Lemons $.99 Joe's

    I would also like to know if I had Columns A to M but only want to return with results from Column A, B, C, G. How would I do that?

    Thanks in advance!

  43. My data file has multiple records against one item..
    Can you please help, if i type the item in a particular cell, all multiple values should appear in front of item e.g
    Part Number Supplier Lead Time Price $
    Orange D5396 45 25.00$
    Orange A6545 50 26.00$
    Orange C9256 60 25.50$
    Orange A6498 45 30.00$
    Orange Z9655 40 26.50$
    Orange D5632 90 29.75$
    Mango W5696 120 5.25$
    Mango A6536 125 4.75$
    i need help, if i type part number in a particular cell, all related information should appear against it...

  44. hye i got two month of data that need to be validate to the latest TotalValue and ignore that already used in the next day.

    i want the outcome like this
    A B
    Unit
    14200001 78
    14200002 144

    and so on.

    the data on my excel

    A B C D
    Unit Date TotalValue Used
    14200001 15-01-18 78 77
    14200001 16-01-18 1 1
    14200001 15-02-18 78 78
    14200002 15-01-18 143 142
    14200002 16-01-18 1 1
    14200002 15-02-18 144 144
    14200003 15-01-18 161 161
    14200003 15-02-18 161 161
    14200004 15-01-18 150 150
    14200004 15-02-18 150 150
    14200005 15-01-18 158 158
    14200005 15-02-18 158 158
    14200006 15-01-18 157 157
    14200006 15-02-18 159 159
    14200007 25-01-18 104 104
    14200007 25-02-18 104 0
    14200007 26-02-18 104 104

  45. =(IFERROR(INDEX(Schedules!$A$5:$A$310; SMALL(IF(B$1=Schedules!$C$5:$C$310;ROW(Schedules!$A$5:$A$310)-4;""); ROW()-22));""))

    I need help.
    I'm using this formula. I need to search hours at collum C to get names from collum A.
    The result i get is blanck from the iferror formula, but if i do F9 it gives me the names. In this case i need to do one by one instead of it be automatic.
    I can't figure it out what is wrong.

    Thanks for the time

  46. Can I use this in a Data Validation?
    =IFERROR(INDEX(sTurrets; SMALL(IF(A$3= sTank_id_turret; ROW(sTurrets)-2;""); ROW()-2));""). I am using named ranges from another sheet as the return_range the lookup_range.
    I have also tried =INDEX(sTurrets;MATCH(A3;sTank_id_turret;0)) and
    =VLOOKUP(A3;allTurrets;3;0).
    Learned these from these and other pages here.
    The index one works but only gives me 1 value, while there are 3 to 4 values to return.
    The IFERROR says List source must be delimited list when I place it in the data validation.
    Please help.

  47. I need to the formula to filter data in column very easy and lookup conditions thank you so much for your support

  48. Hello,
    This works fine if the vlook up value is an Exact match. Is there any way to get all partial matches?

  49. DOES THIS FORMULA WORK IN GOOGLE SHEETS?

  50. Really appreciate how you have taken the pains to elaborate on the logic and the break up of the formula and brilliantly at that, too. Very helpful...thanks!

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)