Hello, I am using SAS 9.4
and I am trying to compare two columns of data and make a new column that helps me identify if any data in column A is not in column B, (identified as "Y" in the new column)
Set: Have
A B
Bo bo
Po xy
Ro ro
set: want
A B match (A = B?)
Bo Bo 1
Po xy N
Ro ro Y
match = ifc(upcase(a) = upcase(b),"Y","N");
Hello, I am using SAS 9.4
and I am trying to compare two columns of data and make a new column that helps me identify if any data in column A is not in column B, (identified as "Y" in the new column)
Set: Have
A B
Bo bo
Po xy
Ro ro
set: want
A B match (A = B?)
Bo Bo 1
Po xy N
Ro ro Y
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.