T
tonyalt3
I would like to count how many cells only IF they contain a value
greater than 1. Is this possible?
greater than 1. Is this possible?
If your cells are in column A, then try this:
=COUNTIF(A:A,">1")
Hope this helps.
Pete
- Show quoted text -
=COUNT(A1:A123,">1")
Adjust range to suit.
Gord Dibben MS Excel MVP
- Show quoted text -
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?