Hello, Thanks for the reply. But, I wanted to know if there is a way to do it using PROC MEANS descend /descending. Is it not allowed while using class?
... View more
Hi All, I need to sort my output in the descending order of mean. Please help. data average; set sashelp.cars (KEEP = MAKE MODEL MSRP); run; proc means data = average mean nway nonobs; class make; var msrp; run;
... View more