Counting Values amongst #N/As

P

Paul W Smith

I have a column of Vlookups, I need to know how many are returning a value
and how many are returning #NAs, what formulas do I use to do this?
 
N

NBVC

=Countif(A1:A100,"#N/A") to count #N/A

and

=Countif(A1:A100,"<>#N/A") to count values other than "#N/A"
 
Top