data have;
input father $ son $;
cards;
a b
b c
c d
d e
;
run;
data want;
input grandfather$ father $ son $;
cards;
a b c
b c d
c d e;
run;
Hello @aanan1417,
Try this:
proc sql;
create table want as
select a.father as grandfather, a.son as father, b.son
from have a, have b
where a.son=b.father
order by 1, 2, 3;
quit;
Hello @aanan1417,
Try this:
proc sql;
create table want as
select a.father as grandfather, a.son as father, b.son
from have a, have b
where a.son=b.father
order by 1, 2, 3;
quit;
thanks a ton
There was a similar thread not long ago. You may find suitable code there.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.