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

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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