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
How about "DDE"?
Haikuo
and, in addition to dde, using the excel engine in a libname statement.
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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.