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!!!

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
Discussion stats
  • 3 replies
  • 5754 views
  • 2 likes
  • 4 in conversation