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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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