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

I would like to assign group id for same values,

like showed below, if I have code_name, how to get group id number?

 

code_name    group_id_number

aa                     1

aa                     1

aa                     1

bb                    2

cc                     3

cc                     3

dd                    4

ee                    5

ff                      6

gg                    7

gg                    7

.                               .

.                               .

.                               .

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Although a retain statement is not needed when you use the s_id + 1 syntax, I like to use it for initializing:

data test;
set test2 (keep = codename);
by codename;
retain s_id 0;
if first.codename then s_id + 1;
run;

Edit: fixed a typo in the by statement (wrong underline)

View solution in original post

4 REPLIES 4
LinusH
Tourmaline | Level 20
Use a data step with BY processing.
Then
if first.codename then group_id_number+1;
You need to initialize group_id_number to 0 (hint: _n_=0)
Data never sleeps
wentao
Calcite | Level 5

Here is my code:

 

data test;
set test2 (keep = codename);
by code_name;

s_id = _n_ = 0;

if first.codename then s_id + 1;
run;

proc print data = test (obs = 100);
var codename s_id;
run;

 

And the out are something like this:

It only assign "1" to the very first codename and the duplicates will just have 0 assigned

 

aa                     1

aa                     0

aa                     0

bb                    1

cc                     1

cc                     0

dd                    1

ee                    1

ff                      1

gg                    1

gg                    0

.                               .

.                               .

.                               .

 

Kurt_Bremser
Super User

Although a retain statement is not needed when you use the s_id + 1 syntax, I like to use it for initializing:

data test;
set test2 (keep = codename);
by codename;
retain s_id 0;
if first.codename then s_id + 1;
run;

Edit: fixed a typo in the by statement (wrong underline)

wentao
Calcite | Level 5

Thanks!!

 

It worked perfectly!Smiley Very Happy

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 4 replies
  • 2733 views
  • 1 like
  • 3 in conversation