counting values within given interval - countif?

  • Thread starter Thread starter A_F
  • Start date Start date
A

A_F

in a column L i have values that range from 1,3 to 3,5,.
I want to count how many values are between lets say 2 and 2,5.
i tried with this expression: =COUNTIF(L2:L450;AND(">2";"<2,5"))and it
returns me 0.
is it possible to count just how many values lies between given
interval (2<2,5) and how can i do this?
 
A_F said:
in a column L i have values that range from 1,3 to 3,5,.
I want to count how many values are between lets say 2 and 2,5.
i tried with this expression: =COUNTIF(L2:L450;AND(">2";"<2,5"))and it
returns me 0.
is it possible to count just how many values lies between given
interval (2<2,5) and how can i do this?


Youi can try this formula:

=SUMPRODUCT((L2:L450>2)*(L2:L450<2,5))


--
Hoping to be helpful...

Regards

Franz
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Excel Need Countifs Formula Help 0
COUNTIF 1
Sorting and COUNTIF 6
Multiple condition countif? 3
Frequency 4
COUNTIF, Sorting, on Two Sheets 1
COUNTIF Cells in Range? 4
Range Formula 7

Back
Top