BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jjoy4891
Fluorite | Level 6

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 ?

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

data want;

    merge myfiles.dataset1 myfiles.dataset2 myfiles.dataset3 myfiles.dataset4;

    by somevariablename; /* Optional */

run;

--
Paige Miller

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

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";
--
Paige Miller
jjoy4891
Fluorite | Level 6
thank you,
i did the above step, however, i can't merge these 4 datasets >
jjoy4891
Fluorite | Level 6
please bear with me, have less exposure to sas programming
PaigeMiller
Diamond | Level 26

data want;

    merge myfiles.dataset1 myfiles.dataset2 myfiles.dataset3 myfiles.dataset4;

    by somevariablename; /* Optional */

run;

--
Paige Miller

sas-innovate-wordmark-2025-midnight.png

Register Today!

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.


Register now!

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
  • 4 replies
  • 1528 views
  • 0 likes
  • 2 in conversation