S Soz Apr 22, 2004 #1 Is there a countif (or other) statement that will count all numbers in a column within a range ie everything between 400 & 499
Is there a countif (or other) statement that will count all numbers in a column within a range ie everything between 400 & 499
J Jason Morin Apr 22, 2004 #3 One way: =COUNT(rng)-SUM(COUNTIF(rng,{"<400";">499"})) HTH Jason Atlanta, GA
F Frank Kabel Apr 22, 2004 #4 Hi some ways: =COUNTIF(A1:A100,">=400")-COUNTIF(A1:A100,">499") or =SUMPRODUCT((A1:a100>=400)*(A1:A100<=499)) or =SUMPRODUCT(--(A1:A100>=400),--(A1:A100<=499))
Hi some ways: =COUNTIF(A1:A100,">=400")-COUNTIF(A1:A100,">499") or =SUMPRODUCT((A1:a100>=400)*(A1:A100<=499)) or =SUMPRODUCT(--(A1:A100>=400),--(A1:A100<=499))