BookmarkSubscribeRSS Feed
pras3
Calcite | Level 5

Hi,

I can't seem to merge the attached dataset using the following code.

There appears no errors on the log file but there is no data in the merge file.

proc sort data=G4;by TIC Fyear; run;

proc sort data=G5; by TIC Fyear;run;

data G6A;merge G4(in=x) G5(in=y); by TIC Fyear;if x=y;run;

Thank You

Puspa

2 REPLIES 2
data_null__
Jade | Level 19

I don't see any matching FYEAR;  so X can never equal Y.

RichardinOz
Quartz | Level 8

When you do have matching data you should consider rephrasing your if condition:

     if x and y;

This is equivalent to

     if x = 1 and y = 1 ;  /* ie both true */


The condition x=y is also met when both are false, an unwanted case.  Sure, the merge process takes care of that but it is a sloppy statement in this context.


Richard


hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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