I would like to count how many cells only IF they contain a value greater than 1. Is this possible?
T tonyalt3 Mar 25, 2008 #1 I would like to count how many cells only IF they contain a value greater than 1. Is this possible?
P Pete_UK Mar 25, 2008 #3 If your cells are in column A, then try this: =COUNTIF(A:A,">1") Hope this helps. Pete
J Jarek Kujawa Mar 25, 2008 #4 =SUM(IF((ISNUMBER(A1:A10)*(A1:A10>1),1,0) insert with Ctrl+Shift+Enter
T tonyalt3 Mar 25, 2008 #5 If your cells are in column A, then try this: =COUNTIF(A:A,">1") Hope this helps. Pete - Show quoted text - Click to expand... Thanks Pete, but I need to make sure it does NOT count any cells w/ zeros in it. This seems to still count them. Any other suggestions?
If your cells are in column A, then try this: =COUNTIF(A:A,">1") Hope this helps. Pete - Show quoted text - Click to expand... Thanks Pete, but I need to make sure it does NOT count any cells w/ zeros in it. This seems to still count them. Any other suggestions?
T tonyalt3 Mar 25, 2008 #6 =COUNT(A1:A123,">1") Adjust range to suit. Gord Dibben MS Excel MVP - Show quoted text - Click to expand... Gord, This is still counting cells w/zeros in it, any other thoughts?
=COUNT(A1:A123,">1") Adjust range to suit. Gord Dibben MS Excel MVP - Show quoted text - Click to expand... Gord, This is still counting cells w/zeros in it, any other thoughts?
R Rick Rothstein \(MVP - VB\) Mar 25, 2008 #7 I would like to count how many cells only IF they contain a value Thanks Pete, but I need to make sure it does NOT count any cells w/ zeros in it. This seems to still count them. Any other suggestions? Click to expand... Did you try it? It works fine on my system. Note, Pete is suggesting COUNTIF, not COUNT. Rick
I would like to count how many cells only IF they contain a value Thanks Pete, but I need to make sure it does NOT count any cells w/ zeros in it. This seems to still count them. Any other suggestions? Click to expand... Did you try it? It works fine on my system. Note, Pete is suggesting COUNTIF, not COUNT. Rick