Hi all, I need help in customizing my report generated by using proc report. code I tried is: proc means data=olympics_digi_cleaned sum descending ; class _probability___; var Total_Media_value; run; Output is attached in attachments. What I want is : (1) To display Prob_Digi in place of _probablity___ as my column name (2) to display all the data in reverse order i.e _probablity 100 will be my first observation and 0 will be my last observation (3) To display sum o all observation in sum column at last (4) At last I also want to add a column that contain the product of _probablity___ and sum.
... View more