count the number of #N/A in a column

nicnad

Board Regular
Joined
Sep 12, 2011
Messages
199
Hi,

I am trying to count the number of #N/A in a the column O.

I tried the following code but it is not working :

Code:
sub test()
v = Application.WorksheetFunction.SumProduct(--Application.WorksheetFunction.IsNA("O:O"))
msgbox v
end sub

Any idea how to fix this?
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hi,

I am trying to count the number of #N/A in a the column O.

I tried the following code but it is not working :

Code:
sub test()
v = Application.WorksheetFunction.SumProduct(--Application.WorksheetFunction.IsNA("O:O"))
msgbox v
end sub

Any idea how to fix this?
Like this...

=COUNTIF(O:O,#N/A)

I don't know how to get it in code, though! :)
 
Upvote 0
In your example, the userside formula could also be

Code:
=sumproduct(--isna(B:B))

But I am looking for the vba code of it.
 
Upvote 0
Are you wanting to count specifically #N/A errros, or is it sufficient to count ALL errors, #N/A / #VALUE! / #DIV/0! etc.. ??

Try

x = Range("O:O").SpecialCells(xlCellTypeFormulas, 16).Count
 
Upvote 0
Glad to help, thanks for the feedback
If there is any chance other errors might exist and you really only wanted to count the #N/A errors, this code line can be used..

NumberOfNAsOnly = Application.Countif(Columns("O"),"#N/A")

Note: This is Biff's formula translated into VBA code.
 
Upvote 0

Forum statistics

Threads
1,216,105
Messages
6,128,859
Members
449,472
Latest member
ebc9

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top