BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I am comparing two datasets that have the same variables. The variables are "id", "insdate" & "ins" for the two insurance tables. The compare works great but I want the ouptut to show which "id" has the issue. Currently the output only shows which "OBS" (record number). There are multiple records in the datasets, therefore 'id" variable is not unique. Here's my code:

*compare datasets;
%macro compare (a,b);
proc compare base=&a compare=&b;
run;
%mend compare;

%compare (hpv1_insurance,hpv2_insurance);
%compare (hpv1_papsmear,hpv2_papsmear);
run;

Thanks,
Wal
2 REPLIES 2
Anitha_SAS
SAS Employee
Try with the option 'outall'

Example:

*compare datasets;
%macro compare (a,b,c);
proc compare base=&a compare=&b out=&c outall noprint;
run;
proc print data=&c;
title 'An OUT= Data Set';
run;
%mend compare;

%compare (hpv1_insurance,hpv2_insurance,tempout1);
%compare (hpv1_papsmear,hpv2_papsmear,tempout2);
run;
deleted_user
Not applicable
Thanks for the input. I ended up writing the below code before I saw your comment and it worked fairly well. It gave me a printout of only observations with errors. If I need a dataset your code would be the choice. Thanks again.

%macro compare (a,b,c);
proc compare base=&a compare=&b nosummary;
by id;
run;
%mend compare;

%compare (hpv1_insurance,hpv2_insurance);
%compare (hpv1_papsmear,hpv2_papsmear);
run;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1259 views
  • 0 likes
  • 2 in conversation