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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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