Lookup two index columns returning multiple matches in excel
Array formula in B14:
=INDEX(Product, SMALL(IF(($C$10=ID_num)*(OrderDate=$C$11), ROW(Product)-MIN(ROW(Product))+1), ROW(1:1))) + CTRL + SHIFT + ENTER copied down as far as necessary.
Named ranges
ID_num (B3:B6)
OrderDate (C3:C6)
Product (D3:D6)
What is named ranges?
Download excel file for this tutorial.
Lookup two index columns returning multiple matches.xls
(Excel 97-2003 Workbook *.xls)
Functions in this article:
MATCH(lookup_value;lookup_array; [match_type]
Returns the relative position of an item in an array that matches a specified value
INDEX(array,row_num,[column_num])
Returns a value or reference of the cell at the intersection of a particular row and column, in a given range
MIN(number1,[number2])
Returns the smallest number in a set of values. Ignores logical values and text
SMALL(array,k) returns the k-th smallest row number in this data set.
ROW(reference) returns the rownumber of a reference
IF(logical_test;[value_if:true];[value_if_false])
Checks whether a condition is met, and returns one value if TRUE, and another value if FALSE
Related articles:
Related posts:
- Lookup two index columns in excel
- Lookup two index columns using min max values and a date range as criteria
- Lookup a value in a list and return multiple matches in excel
- Vlookup with 2 or more lookup criteria and return multiple matches in excel
- Lookup values in a range using two or more criteria and return multiple matches in excel
- Lookup with multiple criteria and display multiple search results using excel formula, part 3
- Lookup with multiple criteria and display multiple search results using excel formula, part 2
- Lookup with multiple criteria and display multiple search results using excel formula, part 4
- Lookup with multiple criteria and display multiple search results using excel formula
- Sum adjacent values using multiple lookup text values in a column in excel



Leave a Reply