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

Hi all,

 

I have a dataset in which I need to assign a unique id by two variables.

 

Below is what I have:

 

id      reg_seq

1       1

1       1

1       2

1       3

2       1

2       2

2       2

 

This is what I want:

id      reg_seq       seq

1       1                  1

1       1                  1

1       2                  2

1       3                  3

2       1                  4

2       2                  5

2       2                  5

 

Any advice?

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Assuming your data set is sorted so that the BY statement works:

 

data want;

set have;

by id reg_seq;

if first.reg_seq then seq + 1;

run;

View solution in original post

3 REPLIES 3
Astounding
PROC Star

Assuming your data set is sorted so that the BY statement works:

 

data want;

set have;

by id reg_seq;

if first.reg_seq then seq + 1;

run;

heretolearn
Obsidian | Level 7

Thank you, both!

KentaMURANAKA
Pyrite | Level 9

Hi, heretolearn:

 

 

If you know First (or Last) By Variables & Retain Statement, you can get your objective submitting this code.

data test;
    input id reg_seq;
    datalines;
    1 1
    1 1
    1 2
    1 3
    2 1
    2 2
    2 2
    ;
run;
proc sort data=test out=test_1;
    by id reg_seq;
run;
data test_2;
    set test_1;
    retain seq;
    by id reg_seq;
    if first.reg_seq eq 1 then byflg=1;
    if _n_ eq 1 then seq=0;
    if byflg ne . then seq+byflg; 
run;

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

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
  • 3 replies
  • 10092 views
  • 3 likes
  • 3 in conversation