Hi,
I have been tasked to assign the same numbers (not increments) for duplicate records. Here is an example of what I want to accomplish:
ID Code Number
A 1
B 2
C 3
D 4
D 4
E 5
F 6
G 7
G 7
G 7
Thanks!
hi ..., if data are sorted by IDCODE ...
data new;
set old;
by idcode;
number+first.idcode;
run;
ps take a look at ... http://www.sascommunity.org/wiki/Tips:Between_and_Within_Group_Counters
Thanks dude,
I didn't want to write 20+ if-then statements for each letter of the alphabet lol...
ScottyB_73 wrote:
Thanks dude,
I didn't want to write 20+ if-then statements for each letter of the alphabet lol...
In your sample data , there is only one variable idcode .
The same with Mike, Assuming you have sorted dataset by idcode.
data want;
set have;
if idcode ne lag(idcode) then number+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 save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.