<?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: ERROR 180-322 During Reading Raw Data Files in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-180-322-During-Reading-Raw-Data-Files/m-p/216069#M53165</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your file separator is different .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;E:\SAS\DA&amp;nbsp; --&amp;gt;&amp;nbsp; is \&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;"&amp;amp;path/b_sales.txt"&amp;nbsp;&amp;nbsp; --&amp;gt;&amp;nbsp; is /&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;That is the reason why SAS complain it .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Xia Keshan&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 04 Apr 2015 05:59:16 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2015-04-04T05:59:16Z</dc:date>
    <item>
      <title>ERROR 180-322 During Reading Raw Data Files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-180-322-During-Reading-Raw-Data-Files/m-p/216067#M53163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am a very beginner of a SAS self learner. I have used libname to define the Practice library in SAS studio and tried to read a txt file saved in drive E: with following statements. However I got the error message as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let path=E:\SAS\DA practice data - Original&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data Practice.b_sales;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; infile "&amp;amp;path/b_sales.txt" dlm=' ';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; input purchase age gender $ income $;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone could help me explain what's wrong and how I can correct it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;P&gt;Cathy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Apr 2015 04:24:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-180-322-During-Reading-Raw-Data-Files/m-p/216067#M53163</guid>
      <dc:creator>cathychen0615</dc:creator>
      <dc:date>2015-04-04T04:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 180-322 During Reading Raw Data Files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-180-322-During-Reading-Raw-Data-Files/m-p/216068#M53164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your %LET statement appears to be missing a semicolon. This means that the first statement in your program is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let path=E:\SAS\DA practice data - Original data Practice.b_sales;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suspect it is your INFILE statement that is getting the 180 error as it doesn't have a preceding DATA statement as it has become part of the text in your %LET statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Apr 2015 05:54:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-180-322-During-Reading-Raw-Data-Files/m-p/216068#M53164</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-04-04T05:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 180-322 During Reading Raw Data Files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-180-322-During-Reading-Raw-Data-Files/m-p/216069#M53165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your file separator is different .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;E:\SAS\DA&amp;nbsp; --&amp;gt;&amp;nbsp; is \&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;"&amp;amp;path/b_sales.txt"&amp;nbsp;&amp;nbsp; --&amp;gt;&amp;nbsp; is /&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;That is the reason why SAS complain it .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Xia Keshan&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Apr 2015 05:59:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-180-322-During-Reading-Raw-Data-Files/m-p/216069#M53165</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-04-04T05:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 180-322 During Reading Raw Data Files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-180-322-During-Reading-Raw-Data-Files/m-p/216070#M53166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your help! &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Apr 2015 04:14:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-180-322-During-Reading-Raw-Data-Files/m-p/216070#M53166</guid>
      <dc:creator>cathychen0615</dc:creator>
      <dc:date>2015-04-05T04:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 180-322 During Reading Raw Data Files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-180-322-During-Reading-Raw-Data-Files/m-p/216071#M53167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Xia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your great help! &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Apr 2015 04:15:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-180-322-During-Reading-Raw-Data-Files/m-p/216071#M53167</guid>
      <dc:creator>cathychen0615</dc:creator>
      <dc:date>2015-04-05T04:15:53Z</dc:date>
    </item>
  </channel>
</rss>

