COUNTIF a cell value is between two numbers

L

LAWNDALE

I have a range of cells (D$9:D350) and I want to count the number of
instances that a number in the cell range is between 100 and 400. I keep
getting errors.
 
T

T. Valko

One way:

This also counts 100 and 400.

=COUNTIF(D9:D350,">=100")-COUNTIF(D9:D350,">400")
 
Top