BookmarkSubscribeRSS Feed
Sean_OConnor
Fluorite | Level 6

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
Fluorite | Level 6

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 = '-';

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 1119 views
  • 0 likes
  • 3 in conversation