BookmarkSubscribeRSS Feed
dlazer1
Calcite | Level 5

Hi,

 

I am working with data and want to make sure I have it coded correctly. I have a company ID and partner ID and date. I want to see when the partner ID changes for each company ID. How would I do that?

 

Thank you!

1 REPLY 1
Reeza
Super User

It depends a bit, are you expecting it to never change? If so you can easily detect that by looking at the max/min values via SQL which operate on character variables as well. If you want to just identify changes you can use BY group processing.

 

Try this to get you started - note the NOTSORTED option because I'm assuming your data is in order of date, but not necessarily in order by partnerID.

 

data want;
set have;
by companyID partnerID notsorted;

if first.partnerID and not first.companyID then flag=1;
else flag=0;

run;

@dlazer1 wrote:

Hi,

 

I am working with data and want to make sure I have it coded correctly. I have a company ID and partner ID and date. I want to see when the partner ID changes for each company ID. How would I do that?

 

Thank you!




 

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 578 views
  • 0 likes
  • 2 in conversation