How do I maintain date formats in Excel when using PROC EXPORT? I have tried ODS Excel but need to maintain the default Excel styling and not use any SAS styling.
If I export a data set with SAS date9 format it seems to be fine using DMBS=XLSX
Or use ODS EXCEL and chose style=minimal to have little SAS formatting. You could also make your own style that had minimal to no changes.
proc export data=sashelp.stocks outfile='C:\_localdata\temp\test1.xlsx' dbms=xlsx replace; run;
ods excel file='C:\_localdata\temp\test2.xlsx' style=journal2;
proc print data=sashelp.stocks;
run;
ods excel close;
If I export a data set with SAS date9 format it seems to be fine using DMBS=XLSX
Or use ODS EXCEL and chose style=minimal to have little SAS formatting. You could also make your own style that had minimal to no changes.
proc export data=sashelp.stocks outfile='C:\_localdata\temp\test1.xlsx' dbms=xlsx replace; run;
ods excel file='C:\_localdata\temp\test2.xlsx' style=journal2;
proc print data=sashelp.stocks;
run;
ods excel close;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.