We Recommend

Smalltalk, Objects, and Design Smalltalk, Objects, and Design
This reference and text treats the Smalltalk programming system and the web of object-oriented ideas within and around it. Thus it is more than a guide to the language; it also examines Smalltalk in its technical and historical setting, and along the way addresses the questions that every Smalltalk developer sooner or later naturally wonders about.


Ballyhoo


Posted By

webonomic on 03/31/08


Tagged

excel MS proc dbload


Versions (?)


Send SAS Data to Excel


Published in: SAS 


URL: http://jaredprins.squarespace.com/blog/2008/3/31/proc-dbload-send-sas-data-to-excel.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;

Report this snippet 

You need to login to post a comment.