BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
tomcmacdonald
Quartz | Level 8

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. 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

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;

 

 

 

 

View solution in original post

1 REPLY 1
Reeza
Super User

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;

 

 

 

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 4450 views
  • 0 likes
  • 2 in conversation