Apply new formats to the cellvalues Frequency, Percent, RowPercent, and ColPercent. The FORMAT= attribute specifies a format for the cellvalues. The format COMMA12. is applied to Frequency, and the format 6.3 is applied to Percent, RowPercent, and ColPercent.
edit Frequency;
format=COMMA12.;
end;
edit Percent;
format=6.3;
end;
edit RowPercent;
format=6.3;
end;
edit ColPercent;
format=6.3;
end;
end;
run;