BookmarkSubscribeRSS Feed
sahkul
Fluorite | Level 6
Can we export the data as a spreadsheet to a Sharepoint site from SAS?
If yes, how?
3 REPLIES 3
Bill
Quartz | Level 8
Whenever someone asks "Can SAS?", the answer is Yes!!

An excel readable file can be written directly to sharepoint with the code below.

ods listing close;
ods results=off;

ods html file="\\mo-sharepoint02\company\division\department\Product\Quality\Reports\Measure\Product.xls";

proc print data=testfile;
run;

ods _all_ close;
GeoffNess
Fluorite | Level 6
> Whenever someone asks "Can SAS?", the answer is
> Yes!!

Can SAS transport me back in time? About 15 years would do, I need to talk myself out of some bad decisions.
eddydag
Calcite | Level 5

The best response ever!!!