Send SAS Data to Excel


/ Published in: SAS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /* This program writes a SAS Data Set to EXCEL using DBLOAD */
  2.  
  3. proc dbload dbms=xls data=sasuser.houses;
  4. path=’c:\path\to\my\folder\filename.xls’;
  5. putnames=yes;
  6. label;
  7. reset all;
  8. limit=0;
  9. load;
  10. run;

URL: http://jaredprins.squarespace.com/blog/2008/3/31/proc-dbload-send-sas-data-to-excel.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.