I do not have experience with the tabulate procedure, however after modifying it to use my dataset, it does not output the rows of full zeros at all, whereas the freq procedure shown below does. proc freq data=data; tables var1*var2 / nocum nocol nopercent; run; proc tabulate data=data;
class var1 var2;
tables var1 * (n rowpctn), var2;
run;
... View more