BookmarkSubscribeRSS Feed
SASKiwi
PROC Star

You can PROC EXPORT to CSV (DBMS = CSV) if you don't have SAS/ACCESS to PC Files licensed, then open the file in Excel and do a File Save As to save in Excel format.

kmel56
Calcite | Level 5

Thanks a lot it works with CSV

FatihAkici
Calcite | Level 5

I think this is a duplicate of this thread: https://communities.sas.com/t5/SAS-Procedures/Problem-with-PROC-EXPORT/td-p/88349 and since I am new to this forum, I don't know how to link my answer directly. So I'll just copy and paste my answer into here.

 

I know this is an old thread, but I just encountered this problem myself, and solved the following way. Actually two ways.

 

1) Forget about Excel, just export into CSV. (This is what I always did with Python, always easier.)

 

PROC EXPORT DATA=last

OUTFILE='/home/data.csv'

DBMS=CSV REPLACE;

PUTNAMES = YES;

RUN;

 

2) If you insist on Excel, here you go:

 

PROC EXPORT DATA=last

OUTFILE='/home/data.xls'

DBMS=EXCEL5 REPLACE;

RUN;

 

Long story short, EXCEL5 is the key. Hope this helps.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 17 replies
  • 20485 views
  • 1 like
  • 9 in conversation