Hi,
I have a list of ID:s (25000 st) and I now want create a new column next to the ID:S and enumerate each of this ID:n with 1-10. Like this:
ID number
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
2 1
2 2
2 3
2 4
2 5
2 6
2 7
2 8
2 9
2 10
an so one
I hope someone can help me with this!
/Thomas
Thanks
I am not sure that this solves my problem
i would like to write a code to enumerate 1-10 in each ID ( i only have a column with ID:s)
data want;
ser have;
by id;
if first.id then count 1 to 10
run;
It's easier if you post two data sets, one that you have and one that you want.
data want;
set have;
do number=1 to 10;
output;
end;
run;
Thanks!
Works perfectly!
/Thomas
data want;
set have;
by id;
if first.id then count=1;
else count+1;
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 save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.