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

Hi,

 

I have dataset as follows:

Group Value

a          1

a          2

a          3

b          1

b          2

b          3

....

 

Is there a way to add group id to the dataset like follows:

Group Value  group_id

a          1         1

a          2         1

a          3         1

b          1         2

b          2         2

b          3         2

....

 

I can use proc sql and join to do this, but is there any other simpler way?

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Assuming the data is sorted by group

data want;
   set have;
   by group;
   retain group_id 0;
   if first.group then group_id+1;
run;

If the data is grouped by the group variable but not in sort order:

 

data want;
   set have;
   by  group notsorted;
   retain group_id 0;
   if first.group then group_id+1;
run;

View solution in original post

2 REPLIES 2
ballardw
Super User

Assuming the data is sorted by group

data want;
   set have;
   by group;
   retain group_id 0;
   if first.group then group_id+1;
run;

If the data is grouped by the group variable but not in sort order:

 

data want;
   set have;
   by  group notsorted;
   retain group_id 0;
   if first.group then group_id+1;
run;
SAS42
Calcite | Level 5

Thank you very much. It worked.

 

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 25. 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
  • 8602 views
  • 1 like
  • 2 in conversation