You could use proc tabulate:
data have;
input Month :&$12. Type :$12. Count Value1 Value2 Value3 Value4;
datalines;
01. April Auto 738 27.6 32.78 8.11 9.01
01. April Voluntary 221 10.05 10.66 2.43 3.33
02. May Auto 261 8.03 6.55 2.88 2.8
02. May Voluntary 108 4.14 4.43 1.2 1.64
03. June Auto 173 5.99 3 1.91 1.86
03. June Voluntary 120 5.46 0 0.13 0.18
;
proc tabulate data=have;
class month type;
var Count Value1 Value2 Value3 Value4;
table (Count*format=6.0 Value1 Value2 Value3 Value4), month=""*type=""*max="";
run;
... View more