SAS Enterprise Guide

Desktop productivity for business analysts and programmers
BookmarkSubscribeRSS Feed
LeftHandLob
Calcite | Level 5

Okay SAS community, I'm very green in this field of Data.  I have specific field expertise, but lack the data science background, so I need a little direction:

 

I'm trying to apply sequential identifiers to a column of existing ID numbers in order to later filter out the first ID number in the original column.  There are roughly 30 columns of total data and about 500K records...big table.

 

Here are the existing ID numbers in my table:

 

6JGM92501240   
6JGM92501240
6JGM92301228
6JGM92001215
6JGM92001215
6JGM92001215
6JGM92001215
6JGM92301228
6JGM92301228

 

I would like to have this:

 

1     6JGM92501240
2     6JGM92501240
1     6JGM92301228
1     6JGM92001215
2     6JGM92001215
3     6JGM92001215
4     6JGM92001215
1     6JGM92301228
2     6JGM92301228

 

I can't simply use select distinct rows only due to some other factors.  Any idea how to do this??  Any help would be great, thanks!

4 REPLIES 4
Reeza
Super User

This post goes over how to enumerate BY groups:

https://stats.idre.ucla.edu/sas/faq/how-can-i-create-an-enumeration-variable-by-groups/

 


@LeftHandLob wrote:

Okay SAS community, I'm very green in this field of Data.  I have specific field expertise, but lack the data science background, so I need a little direction:

 

I'm trying to apply sequential identifiers to a column of existing ID numbers in order to later filter out the first ID number in the original column.  There are roughly 30 columns of total data and about 500K records...big table.

 

Here are the existing ID numbers in my table:

 

6JGM92501240   
6JGM92501240
6JGM92301228
6JGM92001215
6JGM92001215
6JGM92001215
6JGM92001215
6JGM92301228
6JGM92301228

 

I would like to have this:

 

1     6JGM92501240
2     6JGM92501240
1     6JGM92301228
1     6JGM92001215
2     6JGM92001215
3     6JGM92001215
4     6JGM92001215
1     6JGM92301228
2     6JGM92301228

 

I can't simply use select distinct rows only due to some other factors.  Any idea how to do this??  Any help would be great, thanks!


 

PaigeMiller
Diamond | Level 26
proc sort data=have;
    by id;
run;
data want;
    set have;
    by id;
    if first.id then seq=0;
    seq+1;
run;

If the data is already sorted, you can leave out the PROC SORT.

--
Paige Miller
Reeza
Super User
Just a note that I modified your subject line to make it more descriptive.
novinosrin
Tourmaline | Level 20
data have;
input id $20.;
cards;
6JGM92501240   
6JGM92501240
6JGM92301228
6JGM92001215
6JGM92001215
6JGM92001215
6JGM92001215
6JGM92301228
6JGM92301228
;

data want;
set have;
by id notsorted;
if first.id then n=1;
else n+1;
run;

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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