Hi,
I'm currently trying to get SAS 9 to export to Excel 2003 on a specific tab without using DDE.
I've scoured the net and got as far as the below:
libname myxls "c:\update.xls";
data myxls.data;
set work.update2;
run;
libname myxls clear;
This will add all the headers in the update2 dataset to the correct Excel file and tab in the workbook, but, no data :-(
Does anyone know how to do this? Any help you can provide would be greatly appreciated and will more than likely stop me hitting my head on a wall!! ;-)
I'm currently trying to get SAS 9 to export to Excel 2003 on a specific tab without using DDE.
I've scoured the net and got as far as the below:
libname myxls "c:\update.xls";
data myxls.data;
set work.update2;
run;
libname myxls clear;
This will add all the headers in the update2 dataset to the correct Excel file and tab in the workbook, but, no data :-(
Does anyone know how to do this? Any help you can provide would be greatly appreciated and will more than likely stop me hitting my head on a wall!! ;-)