BookmarkSubscribeRSS Feed
jtuk
Calcite | Level 5

Hi

I need to export a dataset to create a new excel spreadsheet (not a csv and not DDE into an existing excel spreadsheet).

·         When trying to do so I get the following error “ERROR: DBMS type EXCELCS not valid for export.” (DBMS = EXCELCS is for connecting remotely), so it looks like I don’t hold the correct SAS/access interfacing licence?

·         Am I missing something here or is it just not possible to do with our current packages, which are

My code is:

proc export data = dat_expo

outfile="dat_out.xls"

dbms=EXCEL  /* I've also tried EXCELCS */

replace;

run;

Thanks,

Jude

3 REPLIES 3
Reeza
Super User

Run proc setinit; run; to see if you have the CONNECT and/or ACCESS to PC FILES Licenses.

Another option is to use ods tagsets.excelxp. No license needed.

ods tagsets.excelxp file="dat_out.xls";

proc print data=dat_expo;

run;

ods tagsets.excelxp close;

You can find references here:

http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_demo.html

ballardw
Super User

Brief add to Reeza's solution, tagsets.excelxp actually creates XML and you may get a warning from Excel that the file isn't in the format expected given it's name. You may want to actually do a "Save As" from Excel to make an actual XLX or XLXS file.

Ksharp
Super User

Or Try another engine if your file is in English.

dbms=XLS

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
  • 3 replies
  • 1755 views
  • 0 likes
  • 4 in conversation