SAS Learning Post

Technical tips and tricks from SAS instructors, authors and other SAS experts.
Learn SAS
Jim Simon 3
Weird PROC FREQ trick

Default PROC FREQ output looks like this: Suppose you don't want the two cumulative statistic columns above.  No problem.  Those can be suppressed with the NOCUM option on the TABLE statement, like this: proc freq data=sashelp.shoes; table product / nocum; run;

1 87 88 89 90 91 204