BookmarkSubscribeRSS Feed
kokodenden52
Obsidian | Level 7

I'd like to write the program below

 

date        item     sale

18/9/1       A       1,000

18/9/1       B       2,000

18/9/1       C       3,000

18/9/2       A       2,000

18/9/2       C       4,000

18/9/3       A       1,000

18/9/3       B       2,500

18/9/3       C       4,100

 

 

I'd like to sort 'date' and make item a group.

 

Please teach me.

 

2 REPLIES 2
PaigeMiller
Diamond | Level 26

It would appear that your data is already sorted by date.

 

I don't know what you mean by "make item a group".

--
Paige Miller
PGStats
Opal | Level 21

If you would like to sort by date within each item group, sort by item, then date:

 

proc sort data=myData; by item date; run;

PG

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 2 replies
  • 622 views
  • 0 likes
  • 3 in conversation