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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
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.