<?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 what is wrong with this code? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/37934#M7591</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How are these data sets related to the code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WORK.GOPTIONS.DATA&lt;/P&gt;&lt;P&gt;WORK.NOACCESSIBLE.DATA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Mar 2012 17:41:31 GMT</pubDate>
    <dc:creator>Hima</dc:creator>
    <dc:date>2012-03-20T17:41:31Z</dc:date>
    <item>
      <title>what is wrong with this code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/37933#M7590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;What i'm trying to do is to stack 3 different datasets with the exact same structure using macros to identify the files by a timestamp for each of the datasets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm unsure why i'm getting an error with the code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%LET CUR_MONTH=2012FEB29;&lt;/P&gt;&lt;P&gt;%LET PREV_MONTH=2012JAN31 ; &lt;/P&gt;&lt;P&gt;%LET PREV_MONTH2=2011DEC31&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA RATED.RATEDEVENT_L3MTH_STACK_&amp;amp;CUR_MONTH ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET RATED.RATED_EVENT_&amp;amp;CUR_MONTH &lt;/P&gt;&lt;P&gt;RATED.RATED_EVENT_&amp;amp;PREV_MONTH&lt;/P&gt;&lt;P&gt;RATED.RATED_EVENT_&amp;amp;PREV_MONTH2; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RUN ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;ERROR: File WORK.GOPTIONS.DATA does not exist.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;ERROR: File WORK.NOACCESSIBLE.DATA does not exist.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set RATED.RATEDEVENT_L3MTH_STACK_2012FEB29 may be incomplete.&amp;nbsp; When this step was &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stopped there were 0 observations and 10 variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set RATED.RATEDEVENT_L3MTH_STACK_2012FEB29 was not replaced because this step was &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stopped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 17:36:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/37933#M7590</guid>
      <dc:creator>Danglytics</dc:creator>
      <dc:date>2012-03-20T17:36:13Z</dc:date>
    </item>
    <item>
      <title>what is wrong with this code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/37934#M7591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How are these data sets related to the code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WORK.GOPTIONS.DATA&lt;/P&gt;&lt;P&gt;WORK.NOACCESSIBLE.DATA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 17:41:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/37934#M7591</guid>
      <dc:creator>Hima</dc:creator>
      <dc:date>2012-03-20T17:41:31Z</dc:date>
    </item>
    <item>
      <title>what is wrong with this code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/37935#M7592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: Courier New; color: #008000;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Courier New; color: #008000;"&gt;/* you missed a ";" */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;%LET PREV_MONTH2=2011DEC31&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Courier New; color: #008000;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 17:42:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/37935#M7592</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2012-03-20T17:42:29Z</dc:date>
    </item>
    <item>
      <title>what is wrong with this code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/37936#M7593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Danglytics,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You're getting an error message because you're working too hard and getting bleary-eyed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The third %LET statement is missing a semicolon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 17:42:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/37936#M7593</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-03-20T17:42:54Z</dc:date>
    </item>
  </channel>
</rss>

