BookmarkSubscribeRSS Feed
stat_sas
Ammonite | Level 13

Another way to do this...

proc sql;
select x1, y1 into :x2, :y2 from have
where group=2;
select x1, y1 into :x3, :y3 from have
where group=6;
quit;

data want;
set have;
x2=&x2;
y2=&y2;
x3=&x3;
y3=&y3;
run;

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 0 replies
  • 879 views
  • 0 likes
  • 1 in conversation