home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / bit / listserv / sasl / 3837 < prev    next >
Encoding:
Internet Message Format  |  1992-08-20  |  1.7 KB

  1. Path: sparky!uunet!elroy.jpl.nasa.gov!sdd.hp.com!uakari.primate.wisc.edu!usenet.coe.montana.edu!news.u.washington.edu!raven.alaska.edu!snalo.swadm.alaska.edu!user
  2. From: snalo@orca.alaska.edu (Lewis Overton)
  3. Newsgroups: bit.listserv.sas-l
  4. Subject: SAS datasets ====> .wks
  5. Message-ID: <snalo-190892112025@snalo.swadm.alaska.edu>
  6. Date: 19 Aug 92 19:22:39 GMT
  7. References: <SAS-L%92081812533005@UGA.CC.UGA.EDU>
  8. Sender: news@raven.alaska.edu (USENET News System)
  9. Followup-To: bit.listserv.sas-l
  10. Organization: U of Alaska
  11. Lines: 36
  12. Nntp-Posting-Host: snalo.swadm.alaska.edu
  13.  
  14. In article <SAS-L%92081812533005@UGA.CC.UGA.EDU>, Greg Nelson
  15. <GNELSON@UGA.BITNET> wrote:
  16. > Does anyone have any experience in working with transferring data from a SAS
  17. > dataset to a lotus or Excel file?
  18.  
  19. This is essentially the same as Steve Doig's answer about transferring data
  20. from SAS datasets to a desktop spreadsheet. I use it for Mac-based EXCEL,
  21. which is happier with tab-delimited fields than all those quotes.
  22.  
  23. I've included the MVS definitions for the sequential file. It is allocated
  24. only the first time, then reused with overwrite on subsequent usages. You
  25. could fancy this up with macros to specify source dataset and destination
  26. file, but since I copy this code in and modify it (specifying which
  27. variables to write) I haven't bothered.
  28.  
  29.   filename xfer '.xfer.data' disp=(mod,catlg,delete)
  30.    space=(trk,(10,10))        /* create */
  31.    ;
  32.  
  33.   data _null_;
  34.    file xfer old recfm=vb blksize=204 lrecl=200
  35.    ;
  36.    set ht.people ;
  37.    put
  38.     ssn       '05'x
  39.     name      '05'x
  40.     mau       '05'x
  41.     div       '05'x
  42.     dept      '05'x
  43.     unit      '05'x
  44.    ;
  45.   run;
  46.  
  47. Lewis Overton, University of Alaska
  48. snalo@orca.alaska.edu  or  snalo@alaska.bitnet
  49.