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

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

Discussion stats
  • 3 replies
  • 5599 views
  • 2 likes
  • 4 in conversation