BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Durlov
Obsidian | Level 7
Given the SAS data set WORK.TEMPS:
The following program is submitted:
 
proc sort data=WORK.TEMPS:
      by descending Month Day;
run;

proc print data=WORK.TEMPS:
run; 
 
What is the output?
Answer: C
 
Why? How is C even sorted in descending order? I was thinking it would be A, since July comes after May.
1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

C is correct. 

 

The months are character, so alphabetical order (corresponding to ascending MONTH) would be:

 

July

June

May

 

Descending month would give you:

 

May 

June

July

 

Within each month, the observations are sorted by ascending DAY (descending only applies to one variable).  

View solution in original post

3 REPLIES 3
Astounding
PROC Star

C is correct. 

 

The months are character, so alphabetical order (corresponding to ascending MONTH) would be:

 

July

June

May

 

Descending month would give you:

 

May 

June

July

 

Within each month, the observations are sorted by ascending DAY (descending only applies to one variable).  

Durlov
Obsidian | Level 7
Oh, I didn't actually think the descending would be applied to the characters themselves (thought it was the order of the dates). Makes sense though. Thanks!
ballardw
Super User

This is one of the many reasons when using date, datetime or time in analysis to strongly consider making SAS date, datetime or time valued variables instead of leaving the individual components (month day year hour minute second) as separate variables of often mixed type (month=> character, day year => numeric).

Then choosing an appropriated date display format, or making a custom one, makes the output pretty.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 5740 views
  • 7 likes
  • 3 in conversation