BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
RavenWu
Calcite | Level 5

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:

2016-07-24_115445.png

 

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.

 

 

 

 

 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
LinusH
Tourmaline | Level 20
I'm not sure what you are expecting?
What is your desired output?
Tables are two dimensional so you can't have several sort orders at the same time.
By specifying several by variables you are specifying the order of that variable within the the previous by variable value.
Data never sleeps

View solution in original post

3 REPLIES 3
LinusH
Tourmaline | Level 20
I'm not sure what you are expecting?
What is your desired output?
Tables are two dimensional so you can't have several sort orders at the same time.
By specifying several by variables you are specifying the order of that variable within the the previous by variable value.
Data never sleeps
rogerjdeangelis
Barite | Level 11

Off topic (combination SAS/R solution  -casino slot machine  like problem)

 

see

https://goo.gl/lL3Wu1

 

You may be able to spin both columns independently with a SAS or WPS hash?

 

Also probably easy with SAS/IML.

RavenWu
Calcite | Level 5
OK, your last sentence answer my question. Thank you.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 717 views
  • 0 likes
  • 3 in conversation