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!
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;
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;
Thank you, both!
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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.