- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 05-25-2016 06:41 AM
(3503 views)
Hi,
I am trying to convert .XPT file to .sas7bdat using SAS studio
could some one help me how to do this.
Thanks
Ka
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Unless you have a pre-fabricated task in SAS Studio for this (Enterprise Guide doesn't have one), you will have to do it in code.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi.
I can just know import one xpt file.
Step1:
Confirm your xpt file is in "FILE"
Step2:
libname xportin xport '/home/YOUR_ACCOUNT_OF_SASSTUDIO/adsl.xpt';
proc copy in=xportin out=work;
select adsl;
run;
Step3:
Finished.