I have two output, and need to append them one.
proc tabulate data=M format=8.2;
class TERM CAMPUS ;
table (all='Total' ),
(CAMPUS ALL)*TERM *(n='#Enrl'*f=8.
pctn<CAMPUS ALL/*CAMPUS*TERM*/ ALL*CAMPUS CAMPUS>
='% Tot Enrl') / rts=20;
run;
proc tabulate data=M format=8.2;
class TERM CAMPUS GENDER/MISSING;
table
GENDER ALL, (CAMPUS ALL)*TERM*(n='#Enrl'*f=8.
pctn<GENDER ALL/*CAMPUS*TERM*/ ALL*GENDER GENDER>
='% Tot Enrl') / rts=20;
run;
How can i append these two reports?