Hi,
I have 4 sas7bdat files , wanted to concatenate them for data manipulation . How can i import the same to sas university edition and perform concatenation ?
data want;
merge myfiles.dataset1 myfiles.dataset2 myfiles.dataset3 myfiles.dataset4;
by somevariablename; /* Optional */
run;
You don't import the .sas7bdat files. Instead, you point SAS to the folder they are stored in by using a LIBNAME statement.
Something like this:
libname myfiles "/folders/myshortcuts/temp/temp";
data want;
merge myfiles.dataset1 myfiles.dataset2 myfiles.dataset3 myfiles.dataset4;
by somevariablename; /* Optional */
run;
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.