Find records using two numerical criteria in excel
Filter records between 13 and 16 can also be done using Advanced filter or in Excel 2007 creating a table.
Array formula in A19:
copied right to D19 and then copied down as far as needed.
Download excel file for this tutorial.
Find records between two numbers in a table.xls
(Excel 97-2003 Workbook *.xls)
Functions in this article:
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
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
ROW(reference) returns the rownumber of a reference
COLUMN(reference) returns the column number of a reference
SMALL(array,k) returns the k-th smallest row number in this data set.
Related blog posts
- Filter unique text values from a range containing both numerical and text values in excel
- A more userfriendly version of: Automatically filter unique row records from multiple columns
- Filter records between two dates
- Quickly highlight records in a list using multiple criteria in excel
- Filter unique distinct records with a condition in excel 2007








Leave a Reply