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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1015 views
  • 0 likes
  • 3 in conversation