Would someone please help me? I am using a PROC EXPORT to export a file to excel. But, the column widths are are using the default excel width. How do I either specify a column width or do an auto width?
PROC EXPORT DATA= WORK.temp
OUTFILE= "&output"
DBMS=EXCEL REPLACE;
SHEET="KEY";
RUN;
Thank you very much for any help!
-jen
... View more