BookmarkSubscribeRSS Feed
ScottyB_73
Calcite | Level 5

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!

3 REPLIES 3
MikeZdeb
Rhodochrosite | Level 12

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

ScottyB_73
Calcite | Level 5

Thanks dude,

I didn't want to write 20+ if-then statements for each letter of the alphabet lol...

Ksharp
Super User

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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 2139 views
  • 0 likes
  • 3 in conversation