- Need to sort by the variables in the by statement before using the proc transpose.
- variables in the by statement are row labels;
- contents in the id variable become the column labels;
- var variable is the value of the table.
proc transpose data=sum out=sumwide; by program academicyear yearlevel; id type; var count; run;