BookmarkSubscribeRSS Feed
Sean_OConnor
Obsidian | Level 7

Folks,

 

I wonder could I get some help on the following. I have two existing character variables which are both ids. One is a product of method a while the other is a product of method b. 

 

I would like to create a third variable which takes the accurate matches from both. A simple table illustrates my point.

 

Also where we have a contrasting match this  output is placed in a second variable. 

 

ID1ID2Final idSecond Id
xxxx5b5b-
6ixxxx6i-
8c5j8c5j
9gxxxx9g-
10b10b10b-

 

 

Any help would be great! 

4 REPLIES 4
Reeza
Super User

You have the 'xxx' in your dataset as indicated?

Sean_OConnor
Obsidian | Level 7

Hi Reeza,

Yes all failed matches have a 'xxxx' inserted.

Reeza
Super User

Look at the IFC function. 

 

Or in Query builder, created a new column. You can use a CASE statement in your computed column. 

Astounding
PROC Star

It sounds like some simple logic would do.

 

if ID1=ID2 then Final_id = ID1;

else if ID1='xxxx' then Final_id = ID2;

else if ID2 = 'xxxx' then Final_id = ID1;

else do;

   Final_id = ID1;

   Second_id = ID2;

end;

 

Optionally, if you really want to, you could add:

 

if Second_id = ' ' then Second_id = '-';

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 4 replies
  • 1758 views
  • 0 likes
  • 3 in conversation