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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 15540 views
  • 3 likes
  • 3 in conversation