karlomutschler
Programmer
good Day,
I wish you and your relatives a happy and prosperous 2005.
In my script I create 3 different SAS datasets
DATA=WORKUNIX.MonthlySum
DATA=WORKUNIX.SalesChannelMonth
DATA=WORKUNIX.SalesRegionsMonth
which I export separately to excel using the following PROC EXPORT:
PROC EXPORT DATA= WORKUNIX.SAS-data-set
OUTFILE= "C:\Path\filename.xls"
DBMS=EXCEL2000 REPLACE;
RUN;
However I wish to export the THREE datasets to ONE excel file and
place the reports on different tabs, one tab for each report, i.e.
DATA=WORKUNIX.MonthlySum on MoSum_Tab
DATA=WORKUNIX.SalesChannelMonth on Channels_Tab
DATA=WORKUNIX.SalesRegionsMonth on Regions_Tab
Any assistance would be highly appreciated.
Kind regards
Karlo
I wish you and your relatives a happy and prosperous 2005.
In my script I create 3 different SAS datasets
DATA=WORKUNIX.MonthlySum
DATA=WORKUNIX.SalesChannelMonth
DATA=WORKUNIX.SalesRegionsMonth
which I export separately to excel using the following PROC EXPORT:
PROC EXPORT DATA= WORKUNIX.SAS-data-set
OUTFILE= "C:\Path\filename.xls"
DBMS=EXCEL2000 REPLACE;
RUN;
However I wish to export the THREE datasets to ONE excel file and
place the reports on different tabs, one tab for each report, i.e.
DATA=WORKUNIX.MonthlySum on MoSum_Tab
DATA=WORKUNIX.SalesChannelMonth on Channels_Tab
DATA=WORKUNIX.SalesRegionsMonth on Regions_Tab
Any assistance would be highly appreciated.
Kind regards
Karlo