hi i am looking to get total of two variables in seprate column like as shown in below format . also looking to get age/total %. can anyone help please thanks PROC TABULATE data=sashelp.class missing format=comma29.;
class sex;
var age height;
table sex ='eligible/ineligible' all = 'Total', all='Tota' (age height )*SUM=''/box='DATA' ;
run;
... View more