Hi team,
I have a datasets like this
| typeID | exclID |
| 1 | 1001 |
| 1 | 1001 |
| 1 | 1001 |
| 1 | 1001 |
| 2 | 1001 |
| 2 | 1001 |
| 2 | 1001 |
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
If the data is sorted by type ID
data want;
set have;
by typeId;
if first.typeid then exclID = 1000*typeId;
exclID + 1;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.