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;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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