formula

R

rhbm

I'm trying to add the number of cells that contain a series of numbers. I.E.
From E2:E24 add the number of cells containing 100% and total in E26. for the
same range count the number of cells containing numbers from 90% - 99% in
cell E27.
 
T

tim m

do you want to add what is in the cells themselves togehter or just count how
many cells contain the data you are checking for?
 
I

Ingolf

Hi,

try

=COUNTIF(E2:E24,">0.9")-COUNTIF(E2:E24,">0.99")

for the number of values between 90% and 99%

Regards,
Ingolf
 
R

rhbm

count how many cells
--
rhbm


tim m said:
do you want to add what is in the cells themselves togehter or just count how
many cells contain the data you are checking for?
 
R

rhbm

That worked! Thank you very much!
--
rhbm


Ingolf said:
Hi,

try

=COUNTIF(E2:E24,">0.9")-COUNTIF(E2:E24,">0.99")

for the number of values between 90% and 99%

Regards,
Ingolf
 
Top