BookmarkSubscribeRSS Feed
mrdlau
Obsidian | Level 7

I'm trying to left join table2 to table 1, but it needs to join by the closest match, instead of exact.

For example,

Table 1 has a column year with values 1990, 2000, 2010, 2020.

Table 2 has column year with values 1991, 2002,2015,2030.

1990 should join with 1991, 2000 to 2002, 2010 to 2015 and 2020 to 2030.

 

Table 1 should match the years in table 2 that is closest and not higher than Table1.

 

how would I do this?

1 REPLY 1
PGStats
Opal | Level 21

This might work for you:

 

data a;
do y = 1990, 2000, 2010, 2020, 2025, 2040; output; end;
run;

data b;
do y = 1991, 2002, 2015, 2030; output; end;
run;

proc sql;
select 
    a.y, 
    b.y as closest_y
from
    a left join
    b on b.y >= a.y
group by a.y
having min(b.y) = b.y;
quit;
                                       y  closest_y
                                -------------------
                                    1990       1991
                                    2000       2002
                                    2010       2015
                                    2020       2030
                                    2025       2030
                                    2040          .
PG

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1 reply
  • 946 views
  • 2 likes
  • 2 in conversation