Excel formula to count cells between two values
Count cells between two values in a column
Formula in D15:
=ABS(MATCH(C12, tbl, 0)-MATCH(C13, tbl, 0))-1 + ENTER
Named ranges
tbl (A1:A10)
Count cells between two values in a row
Formula in D23:
=ABS(MATCH(C20, tbl_row, 0)-MATCH(C21, tbl_row, 0))-1 + ENTER
Named ranges
tbl_row (A18:E18)
Download excel sample file for this tutorial.
formula to count cells between two values.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
ABS(number)
Returns the absolute value of a number, a number without its sign.
Related posts:
- Count unique and duplicates text values in a closed workbook in excel (formula)
- Count matching cell values in two columns in excel
- Count unique values in two lists combined in excel
- Count unique records by date in excel
- Count unique distinct text values in a range in excel
- Filter unique distinct values where adjacent cells contain search string in excel
- Count unique distinct months in excel
- Count unique text values in a range containing both numerical and text values
- Merge two columns with possible blank cells in excel (formula)




January 23rd, 2010 at 11:23 pm
How about this array formula?
=ROUND(SUM(MATCH(C12:C13,A1:A10,0)/2),0)