BookmarkSubscribeRSS Feed
AravindPalanichamy
Calcite | Level 5

Hi team,

I have a datasets like this

typeIDexclID
11001
11001
11001
11001
21001
21001
21001

But i need to increment the exclID as per type ID for e.g, for typeID 1 it should increment like 1001, 1002, 1003, 1004

and for typeID 2 it should increment like from , 2001, 2002, 2003 like that.

It should increment depends on type ID.

and for typeID 3 it has to increment like 3001, 3002, 3003 and so on.

Please suggest a SAS program to implement this

1 REPLY 1
ballardw
Super User

If the data is sorted by type ID

data want;

     set have;

     by typeId;

     if first.typeid then exclID = 1000*typeId;

     exclID + 1;

run;

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1 reply
  • 507 views
  • 0 likes
  • 2 in conversation