BookmarkSubscribeRSS Feed
bollibompa
Quartz | Level 8

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

5 REPLIES 5
bollibompa
Quartz | Level 8

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;


Reeza
Super User

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;

bollibompa
Quartz | Level 8

Thanks!

Works perfectly!

/Thomas

Patrick
Opal | Level 21

data want;

set have;

by id;

if first.id then count=1;

else count+1;

run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 1977 views
  • 0 likes
  • 3 in conversation