An other way to do the same, is create the summary with SQL. PROC SQL; create table summary as( select model, sum(option1) as option1, sum(option2) as option2, sum(option3) as option3 from have group by model /*This option make the sum by model*/ ); QUIT;
... View more