I think the problem is that you have gaps and overlaps in your ranges, coupled with the fact that your numbers are not integers.
For example, you have "<50" but then the next range is 51-69. So what happens to numbers greater than 50 but less than 51 ... there are 4 of them.
And then you have a range 80-90, and another, 90-100. So where do you plan to count 90? There's only 1 of it, fortunately.
You should have formulae like:
Formula:
=COUNTIFS($B$6:$B$656,">=1",$B$6:$B$656,"<51")
and
Formula:
=COUNTIFS($B$6:$B$656,">=51",$B$6:$B$656,"<71")
and
Formula:
=COUNTIFS($B$6:$B$656,">=71",$B$6:$B$656,"<91")
for example
Regards, TMS
Bookmarks