I'm using the ODS Output procedure to send a number of data sets (in .csv format) to a folder that resides on the UNIX box of our firm's SAS server. In PROC EXPORT, you can send a data set to an individual sheet within an Excel workbook instead of creating an individual workbook for each set. Can you do the same thing with ODS? Here's my code. Any suggestions would be greatly appreciated. Thanks.
options
missing=" ";
title
'OUTSTANDINGS BY REGION';
/*OUTSTANDINGS BY REGION (HISTORICAL3)*/
proc tabulate data=service_table out=outstandings_region format=comma10. noseps;
class serv_month region;
var nte01t_note_cpb;
table serv_month*(region ALL='Total'),
(nte01t_note_cpb='Outstandings')*f=dollar16.2 (ALL='Count');
keylabel N='#';
run;
ods listing close;
ods csv file='/sharedhome/j024543/nelnet/landon/OUTSTANDINGS_BY_REGION.CSV';
proc print data=outstandings_region;
title
'OUTSTANDINGS BY REGION';
run;
ods csv close;
ods listing;