proc tabulate data=xx;
var amount;
table amount*(n sum);
run;
Two Questions:
1. How can I order by the "sum"?
2. How can I display only the top ten rows ordered by the sum variable?
I know I can use order=freq to order by N, but thats not what I want.
Thanks,
N
var amount;
table amount*(n sum);
run;
Two Questions:
1. How can I order by the "sum"?
2. How can I display only the top ten rows ordered by the sum variable?
I know I can use order=freq to order by N, but thats not what I want.
Thanks,
N