home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / bit / listserv / sasl / 3522 < prev    next >
Encoding:
Text File  |  1992-07-31  |  1.6 KB  |  33 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!gatech!paladin.american.edu!auvm!CCSVAX.SFASU.EDU!A_MILLARDGD
  3. X-Vmsmail-To: SMTP%"SAS-L@uga.cc.uga.edu"
  4. Message-ID: <920731111204.2180026e@CCSVAX.SFASU.EDU>
  5. Newsgroups: bit.listserv.sas-l
  6. Date:         Fri, 31 Jul 1992 11:12:04 -0500
  7. Reply-To:     Glenn Millard <A_MILLARDGD@CCSVAX.SFASU.EDU>
  8. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  9. From:         Glenn Millard <A_MILLARDGD@CCSVAX.SFASU.EDU>
  10. Subject:      Comma delimited files
  11. Comments: To: SAS-L@uga.cc.uga.edu
  12. Lines: 19
  13.  
  14. Comment: Sorry for the last incomplete message, I hit the wrong key.
  15. Summary: Comma delimited files
  16. E_addr: a_millardgd@ccsvax.sfasu.edu
  17. Name:    Glenn Millard
  18. PH/ADDR: 409-568-1020/Stephen F. Austin State University, Nacogdoches, Texas
  19.  
  20.   I agree with Howard's comment about the delimiter being messy. If you have
  21. used comma delimited files before to move to spreadsheets or databases you
  22. might note that a double quote can be used as well as a single quote.
  23. Example  :      156,"O'hare Airport",456
  24. This would cure this small problem. The other problem is determining when
  25. to quote and when not to quote, character vs. numeric. I have found out that
  26. many spreadsheets do not care if the numeric is quoted as well, all quotes
  27. are stripped on input anyway. Its the first character of the field that they
  28. use to determine the field type, character or numeric. Therfore you would be
  29. quite safe with the following.
  30. Example:   "156","O'Hare Airport","456"
  31. You can always try it, if it does not work you could group your numeric
  32. and character variables separately.
  33.