hello Stat@stat, thank you for the help. Is there an option in SAS which puts the percntile information in the _FREQ_ column? I mean when I use - proc means data= SASHelp.Citiday n nmiss mean std min max p1 p5 p10 p25 p50 p75 p90 p95 p99; var _numeric_; ods output =test (drop=label:) ; run; This doesnt produce pernctile information (only - N, NMISS, MAX,MIN,MEAN,STD). But if I use - proc means data= SASHelp.Citiday n nmiss mean std min max p1 p5 p10 p25 p50 p75 p90 p95 p99; var _numeric_; ods output summary=_stat_temppretty(drop=label:) ; run; The problem is that even if I do get percentile the summary information gets added as a suffix to the variable name. For example, if I have a variable AMOUNT, I get AMOUNT_N, AMOUNT_NMISS, AMOUNT_P1....so on. So I cant even use a proc transpose here. Basically, my end goal is to have all missing data, percntile, min, max, median for original variables. @ksharp - the autoname does not work here. Sk
... View more