BookmarkSubscribeRSS Feed
shru
Calcite | Level 5

Hi,

Just curious,Is there any method to export a sas dataset to excel format except proc export or ODS ?

Anyone suggest on this please?

Thanks

Shru

3 REPLIES 3
Haikuo
Onyx | Level 15

How about "DDE"?

Haikuo

art297
Opal | Level 21

and, in addition to dde, using the excel engine in a libname statement.

lacrefa
Calcite | Level 5

If I remember On Windows Server 32 bits or on a local desktop installation you can import with something as :

LIBNAME ExcelLib ODBC Required="DBQ=&Directory.\&ExcelFile.;DriverId=790;Driver={Microsoft Excel Driver (*.xls)};DefaultDir=&Directory;FIL=excel 8.0;";

DATA _NULL_;

                       ExcelSheet = "ExcelLib.'&SheetName$'n&SASDataSetOptions";

                       CALL SYMPUT ("ExcelSheet", ExcelSheet);

RUN;

DATA &SASDataSet;

           SET &ExcelSheet;

RUN;

LIBNAME ExcelLib;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 1138 views
  • 0 likes
  • 4 in conversation