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
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
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.