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
Opal | Level 21

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

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

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