BookmarkSubscribeRSS Feed
HarryT
Calcite | Level 5

I have two datasets. One our own and the other a clients. I need to match them. However in our dataset we use Account_Number and the client uses BANKACCOUNT. I need match what accounts are in both datasets to produce a matching dataset and a non-matching dataset for Reconciliation purposes. How can this be done? Thanks 

 

Below is my code which does not work

 

data Match No_Match;
Merge Dataset1 Dataset2;
by ACCOUNT_NUMBER BANKACCOUNT;
if ina and inb then output Match;
else output No_Match;
run;

2 REPLIES 2
Reeza
Super User

You have to RENAME the variable for this to work in a data step merge, the variable name needs to be the same. If you merge with SQL you can have different names.

 

 

Astounding
PROC Star

Just to clarify ...

 

In a MERGE, you don't need to rename ahead of time.  You can do it on the fly, as you merge:

 

data Match No_Match;
Merge Dataset1 Dataset2 (rename=(BANKACCOUNT=ACCOUNT_NUMBER));;
by ACCOUNT_NUMBER;
if ina and inb then output Match;
else output No_Match;
run;

 

If both variables are character, make sure they have the same length.  There are ways to correct the problem if the lengths are different, but length is an issue that should not be ignored.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 17040 views
  • 3 likes
  • 3 in conversation