BookmarkSubscribeRSS Feed
zhangda
Fluorite | Level 6

Hi,

 

A quick question, what is the easiest way to get table C where only two columns there, num=5 and index=a, thanks!

 

data A;
input num index $;
cards;
1 a
2 a
3 a
4 a
;
run;

data B;
input num index $;
cards;
1 a
2 a
3 a
4 a
5 a
;
run;

2 REPLIES 2
ballardw
Super User

What does C look like? What does it come from?

 

Easiest from your description might well be:

data c;
input num index $;
cards;
;
run;

 

so I think you are missing some details of your issue.

Astounding
PROC Star

Sort your data sets if they are not already in order:

 

proc sort data=a; by num index; run;

proc sort data=b; by num index; run;

 

In this case, your data sets are already in order and don't need to be sorted.  

 

Then to find the mismatch:

 

data c;

merge a (in=in_a)  b (in=in_b);

by num index;

if in_a=0;

run;

 

In this case, the program doesn't actually need IN_A.  But your real requirements might be to find mismatches in either direction where you might use:

 

if in_a=0 or in_b=0;

 

 

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!

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.

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
  • 1009 views
  • 0 likes
  • 3 in conversation