BookmarkSubscribeRSS Feed
Smitha9
Fluorite | Level 6

Hi,

I have repetitive ClassID and I want to give seperated ID per classID. 

ClassID    ID

1               1

1               2

1             3

2              1

2             2

2             3

 

I want create ID's like above using the classID.

can anyone help me with this?

thank you in advance

 

1 REPLY 1
mklangley
Lapis Lazuli | Level 10

Is this what you're looking for?

data have;
    input ClassID;
    datalines;
    1
    1
    1
    2
    2
    2
    3
    3
    3
    3
    ;
run;

data want;
    set have;
    by ClassID;
    retain ID;
    if first.ClassID then ID = 1;
    else ID = ID + 1;
    output;
run;

Note: I am assuming your input data is sorted by ClassID.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

Register now

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 635 views
  • 0 likes
  • 2 in conversation