Problem:
Finding the number of values in List1 (Column A) between each two values in List2 (Column B).
Solution:
To count the numbers in List1 that are between 1 and 2 (B2:B3), use the following formula:
=COUNTIF($A$2:$A$10,\"\">=\"\"&B2)-COUNTIF($A$2:$A$10,\"\">\"\"&B3)
List1___List2___Result
2.4_____1_______3
3.8_____2_______2
1.3_____3_______2
4.3_____4_______2
3.5_____5_______0
2.6
1.2
1.9
4.5
Bookmarks