<?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: proc import wizard problem... in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444496#M111301</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; One possible solution has also been posted here: &lt;A href="https://communities.sas.com/t5/SAS-Procedures/SAS-import-entire-file-as-a-header-how-do-I-resolve/m-p/444445#M69382" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/SAS-import-entire-file-as-a-header-how-do-I-resolve/m-p/444445#M69382&lt;/A&gt; in your other posting on the same question.&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
    <pubDate>Sun, 11 Mar 2018 02:09:20 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2018-03-11T02:09:20Z</dc:date>
    <item>
      <title>proc import wizard problem...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444428#M111266</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;I'm using the import wizard with SAS to import a MS Excel CSV file.&amp;nbsp; The problem is that SAS imports the entire file as a header with no observations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example,&lt;/P&gt;&lt;P&gt;SAS shows a 10 variable dataset with 0 observations:&lt;/P&gt;&lt;P&gt;RSID&amp;nbsp; FULLNAME&amp;nbsp; Priv&amp;nbsp; Date&amp;nbsp; EMAIL&amp;nbsp; Ugkdd10&amp;nbsp; Jason Thomas&amp;nbsp; DBA&amp;nbsp; 2008&amp;nbsp; jt@hotmail.com&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need SAS to show me a 5 variable dataset with 1 observation:&lt;/P&gt;&lt;P&gt;RSID,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FULLNAME,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Priv,&amp;nbsp; &amp;nbsp; &amp;nbsp;Date,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;EMAIL&lt;/P&gt;&lt;P&gt;Ugkdd10&amp;nbsp; &amp;nbsp; &amp;nbsp; Jason Thomas&amp;nbsp; &amp;nbsp; &amp;nbsp; DBA&amp;nbsp; &amp;nbsp; &amp;nbsp;2008&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; jt@hotmail.com&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I couldn't find any documentation of how to do this.&amp;nbsp; Maybe proc transpose with some other formula?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do I need to figure out a way to recreate the dataset with SAS code (i.e., SCAN, SUBSTR, etc)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is very much appreciated.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 19:02:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444428#M111266</guid>
      <dc:creator>belboy</dc:creator>
      <dc:date>2018-03-10T19:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: proc import wizard problem...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444434#M111272</link>
      <description>&lt;P&gt;I bet you are using Excel on a MAC?&lt;/P&gt;
&lt;P&gt;Excel is too stupid to understand that Mac's are now using Unix and that text files should use linefeed as the end of line marker and not carriage return.&lt;/P&gt;
&lt;P&gt;Either use the SAVE AS feature and pick a different file format that uses the right end of line markers.&lt;/P&gt;
&lt;P&gt;Or tell SAS that the end of line marker is CR.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename mycsv 'filename' termstr=cr;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 10 Mar 2018 19:28:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444434#M111272</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-03-10T19:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: proc import wizard problem...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444441#M111274</link>
      <description>&lt;P&gt;Nah, not a Mac.&amp;nbsp; Using proc import wizard via Windows PC.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 19:43:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444441#M111274</guid>
      <dc:creator>belboy</dc:creator>
      <dc:date>2018-03-10T19:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: proc import wizard problem...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444471#M111292</link>
      <description>&lt;P&gt;Try another FILE SAVE AS CSV making sure you just choose the plain CSV option&amp;nbsp; and not CSV (MAC).&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 21:46:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444471#M111292</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-03-10T21:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: proc import wizard problem...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444475#M111293</link>
      <description>&lt;P&gt;Make sure you saved the right CSV file. If you save your file as CSV(Macintosh) and try to import it into SAS then you will have the records in a single line.&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;You maybe right they maybe saved as Mac files.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Test.png" style="width: 455px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19124iF056A64B1796117C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Test.png" alt="Test.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 21:59:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444475#M111293</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-03-10T21:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: proc import wizard problem...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444496#M111301</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; One possible solution has also been posted here: &lt;A href="https://communities.sas.com/t5/SAS-Procedures/SAS-import-entire-file-as-a-header-how-do-I-resolve/m-p/444445#M69382" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/SAS-import-entire-file-as-a-header-how-do-I-resolve/m-p/444445#M69382&lt;/A&gt; in your other posting on the same question.&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sun, 11 Mar 2018 02:09:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-import-wizard-problem/m-p/444496#M111301</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-03-11T02:09:20Z</dc:date>
    </item>
  </channel>
</rss>

