<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: CSV Import Issue in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151308#M39865</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You did it correctly, but didn't output enough characters for one to really know what the file structure might actually look like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My first guess would be to try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Data test;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;infile 'C:\Users\Daniel\Documents\Line.csv'&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-size: 12.7272720336914px; line-height: 1.5em;"&gt;firstobs=4&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;dlm='2C0A'x&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;dsd&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;missover&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;LRECL=6100&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;input&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Case: $8.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Narrative: $4030.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Indication: $575.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Country: $4.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Report_Source: $12.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Image: $31.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Attach: $15.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Dec 2014 01:29:42 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2014-12-16T01:29:42Z</dc:date>
    <item>
      <title>CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151294#M39851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having an issue with importing a CSV file (I believe queried and given to me from a big database) into SAS when every string is in quotes as listed below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( "File","O,H,H","Yes")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, if I open the CSV in excel and save over it, it results in the follow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(File,"O,H,H",Yes)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and this imports just fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to import without having excel involved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;Data test;&lt;/P&gt;&lt;P&gt;infile 'C:\Users\Daniel\Documents\Line.csv'&lt;/P&gt;&lt;P&gt;TERMSTR=CRLF&lt;/P&gt;&lt;P&gt;firstobs=4&lt;/P&gt;&lt;P&gt;dlm=','&lt;/P&gt;&lt;P&gt;dsd&lt;/P&gt;&lt;P&gt;missover&lt;/P&gt;&lt;P&gt;LRECL=6100&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;input&lt;/P&gt;&lt;P&gt;Case: $8.&lt;/P&gt;&lt;P&gt;Narrative: $4030.&lt;/P&gt;&lt;P&gt;Indication: $575.&lt;/P&gt;&lt;P&gt;Country: $4.&lt;/P&gt;&lt;P&gt;Report_Source: $12.&lt;/P&gt;&lt;P&gt;Image: $31.&lt;/P&gt;&lt;P&gt;Attach: $15.&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 20:21:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151294#M39851</guid>
      <dc:creator>dtchoi86</dc:creator>
      <dc:date>2014-12-15T20:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151295#M39852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the issue in when importing directly from csv?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 20:49:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151295#M39852</guid>
      <dc:creator>DBailey</dc:creator>
      <dc:date>2014-12-15T20:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151296#M39853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A dataset with 20,000 observation is only 19 observations long and fields with incorrect information in them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 20:53:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151296#M39853</guid>
      <dc:creator>dtchoi86</dc:creator>
      <dc:date>2014-12-15T20:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151297#M39854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My first thought is a different termstr value that is getting replaced when opened/saved in Excel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 21:03:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151297#M39854</guid>
      <dc:creator>DBailey</dc:creator>
      <dc:date>2014-12-15T21:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151298#M39855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any other value other than: CRLF, CR, and LF?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tried all three and none worked.&amp;nbsp; Perhaps the CSV file given to me is in a format SAS cannot read?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 21:06:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151298#M39855</guid>
      <dc:creator>dtchoi86</dc:creator>
      <dc:date>2014-12-15T21:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151299#M39856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's certainly possible to construct a file that uses something else.&amp;nbsp; At times, I've even had to open the file in a byte editor to look at what's actually there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 21:16:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151299#M39856</guid>
      <dc:creator>DBailey</dc:creator>
      <dc:date>2014-12-15T21:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151300#M39857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only question I have left is, which is really just asking the question again:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can SAS import a CSV where all the strings are in quotation marks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"103943","O,H,J","File","Patient blah, blah, blah"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 21:19:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151300#M39857</guid>
      <dc:creator>dtchoi86</dc:creator>
      <dc:date>2014-12-15T21:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151301#M39858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That should not be an issue.&amp;nbsp; You can prove that by creating a sample file and trying it.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 21:23:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151301#M39858</guid>
      <dc:creator>DBailey</dc:creator>
      <dc:date>2014-12-15T21:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151302#M39859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, remove the dlm=',', the dad option should cover that. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 21:46:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151302#M39859</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-12-15T21:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151303#M39860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, you usually need truncover instead of missover.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 22:07:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151303#M39860</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-12-15T22:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151304#M39861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried all these options with no success.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm pretty convinced it's the file itself.&amp;nbsp; Perhaps the CSV file is coded differently?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried creating a sample csv, and it works fine.&amp;nbsp; However, this file doesn't seem to import.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 22:12:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151304#M39861</guid>
      <dc:creator>dtchoi86</dc:creator>
      <dc:date>2014-12-15T22:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151305#M39862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;
&lt;P&gt;A dataset with 20,000 observation is only 19 observations long&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;This may mean that the data needs to have a fixed record length specified when reading. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 22:24:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151305#M39862</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-12-15T22:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151306#M39863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post a "small" hexdump of the first few records from the file? Mark Terjeson posted the following macro on SAS-L some years back which makes it quite easy to see what a file "really" looks like. You may have to include a max parameter when calling the macro if your file's first 2 or 3 records (after the initial 4 records that your skipping) don't appear:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro hexdump(pathfile=,max=20000);&lt;/P&gt;&lt;P&gt;&amp;nbsp; data _null_;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; length chars $16;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; retain address 0 chars '................';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; infile "&amp;amp;pathfile" lrecl=1 recfm=f end=done;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; counter+1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if counter le &amp;amp;max. then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; input c $char1.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if mod(address,16) eq 0 then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if _N_ eq 1 then put address hex8. 'h: ' @;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else put ' ; ' chars / address hex8. 'h: ' @;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; chars = '................';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put c hex2. ' ' @;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if rank(c) ge 32 then substr(chars,mod(address,16)+1,1) = c;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; address + 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if done or counter gt &amp;amp;max. then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do i =mod(address,16)+1 to 16;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put ' ' @;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put ' ; ' chars / ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;%mend;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%hexdump(pathfile=C:\Users\Daniel\Documents\Line.csv)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 22:40:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151306#M39863</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-12-15T22:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151307#M39864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if I did this correctly, but here it is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;00000000h: 0A 22 54 6F 74 61 6C 20 4E 75 6D 62 65 72 20 6F&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;00000010h: 66 20 43 61 73 65 73 3A 22 2C 2C 22 32 32 2C 38&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;00000020h: 39 31 22 0A 0A 22 43 61 73 65 20 23 22 2C 22 56&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;00000030h: 72 73 6E 22 2C 22 46 44 41 20 49 6E 69 74 69 61&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;00000040h: 6C 20 52 65 63 64 20 44 61 74 65 22 2C 22 46 44&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;00000050h: 41 20 52 65 63 64 20 44 61 74 65 22 2C 22 41 6C&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;00000060h: 6C 20 53 75 73 70 65 63 74 73 22 2C 22 50 72 69&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;00000070h: 6D 61 72 79 20 53 75 73 70 65 63 74 20 28 50 53&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;00000080h: 29 22 2C 22 50 53 20 44 6F 73 65 2D 52 6F 75 74&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;00000090h: 65 2D 46 72 65 71 75 65 6E 63 79 22 2C 22 4F 75&amp;nbsp; ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 22:56:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151307#M39864</guid>
      <dc:creator>dtchoi86</dc:creator>
      <dc:date>2014-12-15T22:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: CSV Import Issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151308#M39865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You did it correctly, but didn't output enough characters for one to really know what the file structure might actually look like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My first guess would be to try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Data test;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;infile 'C:\Users\Daniel\Documents\Line.csv'&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-size: 12.7272720336914px; line-height: 1.5em;"&gt;firstobs=4&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;dlm='2C0A'x&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;dsd&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;missover&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;LRECL=6100&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;input&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Case: $8.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Narrative: $4030.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Indication: $575.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Country: $4.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Report_Source: $12.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Image: $31.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Attach: $15.&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2014 01:29:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CSV-Import-Issue/m-p/151308#M39865</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-12-16T01:29:42Z</dc:date>
    </item>
  </channel>
</rss>

