See if this gives you something usable.
proc format library=work;
value iszero
0='Yes'
other='No'
;
run;
proc tabulate data=have;
class _numeric_/missing;
format _numeric_ iszero.;
tables _numeric_ ,
n
;
run;
replace HAVE with the name of your data set.
... View more