G Guest Sep 18, 2005 #1 how can I use the COUNTIF formula to count only those numbers that fit between a range like greater than 90 but less than 100.
how can I use the COUNTIF formula to count only those numbers that fit between a range like greater than 90 but less than 100.
C Chip Pearson Sep 18, 2005 #2 Use two COUNTIF functions. E.g., =COUNTIF(A1:A10,"<100")-COUNTIF(A1:A10,"<90") -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com
Use two COUNTIF functions. E.g., =COUNTIF(A1:A10,"<100")-COUNTIF(A1:A10,"<90") -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com
G Guest Sep 18, 2005 #3 Thanks Chip. really use minus sign between them? Does that serve as an "AND"?
G Guest Sep 18, 2005 #4 Chip, I figured it out. Thank you again. jsky said: Thanks Chip. really use minus sign between them? Does that serve as an "AND"? Click to expand...
Chip, I figured it out. Thank you again. jsky said: Thanks Chip. really use minus sign between them? Does that serve as an "AND"? Click to expand...
R Ron Rosenfeld Sep 18, 2005 #5 how can I use the COUNTIF formula to count only those numbers that fit between a range like greater than 90 but less than 100. Click to expand... =COUNTIF(rng,">90") - COUNTIF(rng,">=100") --ron
how can I use the COUNTIF formula to count only those numbers that fit between a range like greater than 90 but less than 100. Click to expand... =COUNTIF(rng,">90") - COUNTIF(rng,">=100") --ron
G Guest Sep 19, 2005 #6 Hi, You may also use array formulas (Ctrl+Shift+Enter) to solve the problem =sum(if((range>90)*(range<100),1,0)) Regards, Ashish Mathur
Hi, You may also use array formulas (Ctrl+Shift+Enter) to solve the problem =sum(if((range>90)*(range<100),1,0)) Regards, Ashish Mathur