BookmarkSubscribeRSS Feed
wreneau
Calcite | Level 5

Hi All,

Our users have the ability to run EG (Version 5.1 (5.100.0.12019) (64-bit))  reports from our web portal. I need the ability to output the results into excel quickly.

Basically, i need a new excel file to open and dump the data each time. Since this is accessed on each users local machine through our web portal I cannot have a 'template' excel workbook. EG needs to 'create' a new workbook each time.

Historically, I have been pasting the following into the .sas file and it works great unless the excel file is med-large. It is extremely slow for mid sized output (10min+).

data _null_;

rc = stpsrv_header('Content-type','application/vnd.ms-excel');

rc = stpsrv_header('Content-disposition',"inline");

run; 

I have tried the following two methods with no luck...

#1

/*I replace username with dynamic username*/

ods _all_ close;

ODS MARKUP TAGSET=TAGSETS.EXCELXP

file='/var/opt/data/userdata/username/testing.xls'

style = statistical;

proc print data=final noobs label; run;

ODS TAGSETS.EXCELP CLOSE;

ODS LISTING;

ERROR: Physical file does not exist, D:\var\opt\data\userdata\username\testing.xls.

ERROR: No body file. MARKUP output will not be created.

#2

%let download_from = %sysfunc(getoption(work))/test.xls;

filename src "&download_from.";

proc export

  data=final

  dbms=xls

  outfile=src

  replace;

run;

ERROR: DBMS type XLS not valid for export.

Any thoughts on what I am doing wrong?

1 REPLY 1
TomKari
Onyx | Level 15

In the first case, it looks like you're providing a file reference that isn't valid on the server that SAS is running on. Your SAS Admin. should be able to give you some insights into the file structure on the server.

Tom

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 1425 views
  • 0 likes
  • 2 in conversation