I am working on proc tabulate and I want to fill all the null entry cell with zeros what should I do.
Following is the code and ss of the result while i used proc tabulate.
proc tabulate data=DST_EMP3 out= F1 (drop=_TYPE_ _PAGE_ _TABLE_);
class EMP_CODE DATE_OF_APPROVAL;
table EMP_CODE, DATE_OF_APPROVAL;
run;
I want where data is showing .(dot) it should be replaced by 0(zero).

Thanks