Formula Issues

  • Thread starter Thread starter OEMJ
  • Start date Start date
O

OEMJ

Hi, I am trying to create a formula which counts the number of cells in a
column range which do not equal "n/a". I am at a total loss...any suggestions?
 
If you mean count the ** number of cells ** then try

'if you mean the error #N/A try
=COUNTIF(A1:A10,"<>#N/A")

'if you mean text n/a
=COUNTIF(A1:A10,"<>N/A")

If this post helps click Yes
 
Thanks Max but this returns the wrong amount. I am aiming for a figure of 47
but this is obviously going to change when i amend the data. This gave me 67.
I have tried another formula:

=COUNTIF(N4:N107,"<>n/a")

but this includes blank cells which i do not want included and gives me a
sum of 84. Any ideas?
 
I think I have discovered the winning formula...

=COUNTA(N4:N107)-COUNTIF(N4:N107,"n/a")

This returns the correct result but does it make sense?
 
The earlier presumes you meant the excel error: #N/A
COUNTA gives you the count of all filled cells in the source range, whether
these contain text, nums or #N/As, ie it excludes blank cells. The sumproduct
counts the number of cells with #N/As. The "counta - sumproduct" earlier
hence returns the desired count (provided you meant: #N/A)
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
 
Back
Top