Hello
I am using proc tabulate procedure with out option to create output data set.
My question is how to control the name of the columns in the output data set.(without using rename statement!!!)
for example:
Instead of names:
MSRP_Mean
MSRP_Max
MSRP_Min
I want to have name:
x_avg
x_Max
x_Min
proc tabulate data = sashelp.cars out=bbb;
class origin;
var msrp;
table origin,
msrp*mean msrp*max msrp*min ;
run;