The following is my codes, and I want to order id cash ticket (low- high) and quantity (high-low), but I found that I can't order all of
this variables at the same time as I want. For example, if I want to order id from low to high, then I can't order the cash from low to high anymore since the orders of this two variables are conflict, and that is logical.
DATA HAVE; INPUT id 4. ticket 3. quantity 3. cash 3.; DATALINES ; 3000 15 1 92 3002 1 0 86 3002 24 0 86 3009 3 5 91 ; RUN; PROC SORT DATA=HAVE OUT=WANT; BY id cash ticket DESCENDING quantity; RUN;
output:
I want to confirm that Is it true that it is impossible to order several variables at the same time if their orders are conflict?
I am not sure, maybe there is other way that I can't think up.
Off topic (combination SAS/R solution -casino slot machine like problem)
see
You may be able to spin both columns independently with a SAS or WPS hash?
Also probably easy with SAS/IML.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.