<?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 Setting a calculated value as a Global Variable in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Setting-a-calculated-value-as-a-Global-Variable/m-p/208578#M38785</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;Hello all,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;I have been working on some code and would like to add this to the beginning of my program to avoid doing any calculations of time so it runs independently on weekend/off work schedule. So far it is set to run on Sundays but when I run it during the week I have to manually calculate the timeframe needed. The following is just an example of what I need and it is meant to calculate the prior month end day (last day of previous month) and the start of the month six whole months prior:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt; MONTH;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: black; font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;CurrentDay=today();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: black; font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;PriorMOEnd = CurrentDay- (DAY(CurrentDay));&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: black;"&gt;PriorMOStart = intnx(&lt;/SPAN&gt;&lt;SPAN style="color: purple;"&gt;'MONTH'&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;,PriorMOEnd - (day(PriorMOEnd)-&lt;/SPAN&gt;&lt;STRONG style="color: teal;"&gt;1&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt;),-&lt;/SPAN&gt;&lt;STRONG style="color: teal;"&gt;5&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt;) ;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: blue;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt; CurrentDay &lt;SPAN style="color: black;"&gt;PriorMOEnd &lt;SPAN style="color: black;"&gt;PriorMOStart &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: teal;"&gt;DATE8.&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy;"&gt;print&lt;/STRONG&gt; &lt;SPAN style="color: blue;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;=MONTH;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;DATA&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt; TEST;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: blue;"&gt;SET&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt; MONTH;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: blue;"&gt;%Global&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt; START END;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: blue;"&gt;%LET&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt; START = PriorMOEnd;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: blue;"&gt;%LET&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;END&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt; = PriorMOStart;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;RUN&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;DATA&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt; TEST2;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: blue;"&gt;X&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;=&amp;amp;START;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: black; font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;Y=&amp;amp;END;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;RUN&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;The second and third data steps are just to test the setting of the global variables but when DATA TEST 2 runs there is nothing there. I've searched for a good resource for this question for the past few days with no luck and would appreciate any and all comments. I should mention that I am new to SAS but have some experience with SQL and learning both the SAS and PROC SQL programming steps. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Aug 2015 13:24:27 GMT</pubDate>
    <dc:creator>cedpme</dc:creator>
    <dc:date>2015-08-27T13:24:27Z</dc:date>
    <item>
      <title>Setting a calculated value as a Global Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Setting-a-calculated-value-as-a-Global-Variable/m-p/208578#M38785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;Hello all,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;I have been working on some code and would like to add this to the beginning of my program to avoid doing any calculations of time so it runs independently on weekend/off work schedule. So far it is set to run on Sundays but when I run it during the week I have to manually calculate the timeframe needed. The following is just an example of what I need and it is meant to calculate the prior month end day (last day of previous month) and the start of the month six whole months prior:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt; MONTH;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: black; font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;CurrentDay=today();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: black; font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;PriorMOEnd = CurrentDay- (DAY(CurrentDay));&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: black;"&gt;PriorMOStart = intnx(&lt;/SPAN&gt;&lt;SPAN style="color: purple;"&gt;'MONTH'&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;,PriorMOEnd - (day(PriorMOEnd)-&lt;/SPAN&gt;&lt;STRONG style="color: teal;"&gt;1&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt;),-&lt;/SPAN&gt;&lt;STRONG style="color: teal;"&gt;5&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt;) ;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: blue;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt; CurrentDay &lt;SPAN style="color: black;"&gt;PriorMOEnd &lt;SPAN style="color: black;"&gt;PriorMOStart &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: teal;"&gt;DATE8.&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy;"&gt;print&lt;/STRONG&gt; &lt;SPAN style="color: blue;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;=MONTH;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;DATA&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt; TEST;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: blue;"&gt;SET&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt; MONTH;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: blue;"&gt;%Global&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt; START END;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: blue;"&gt;%LET&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt; START = PriorMOEnd;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: blue;"&gt;%LET&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;END&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt; = PriorMOStart;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;RUN&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;DATA&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt; TEST2;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="color: blue;"&gt;X&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;=&amp;amp;START;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: black; font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;Y=&amp;amp;END;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: navy;"&gt;RUN&lt;/STRONG&gt;&lt;SPAN style="color: black;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;The second and third data steps are just to test the setting of the global variables but when DATA TEST 2 runs there is nothing there. I've searched for a good resource for this question for the past few days with no luck and would appreciate any and all comments. I should mention that I am new to SAS but have some experience with SQL and learning both the SAS and PROC SQL programming steps. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 13:24:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Setting-a-calculated-value-as-a-Global-Variable/m-p/208578#M38785</guid>
      <dc:creator>cedpme</dc:creator>
      <dc:date>2015-08-27T13:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a calculated value as a Global Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Setting-a-calculated-value-as-a-Global-Variable/m-p/208579#M38786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The interface to create a macro variable in a data step are the functions Call Symput and Call Symputx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since macro variables contain text to you want the Start and End to have the SAS date numeric value, which would look like&amp;nbsp; 20327 or something more human readable like 08/27/2015?&lt;/P&gt;&lt;P&gt;If you are using the results to filter on SAS date values the former would likely work best.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data _null_;&lt;BR /&gt;CurrentDay=today();&lt;BR /&gt;PriorMOEnd = CurrentDay- (DAY(CurrentDay));&lt;BR /&gt;PriorMOStart = intnx('MONTH',PriorMOEnd - (day(PriorMOEnd)-1),-5) ;&lt;BR /&gt;format CurrentDay PriorMOEnd PriorMOStart DATE8.;&lt;BR /&gt;call symputx ('Start',PriorMOEnd);&lt;BR /&gt;call symputx ('End',PriorMOStart);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;%put Start= &amp;amp;start&amp;nbsp; End= &amp;amp;end;&lt;/P&gt;&lt;P&gt;If you want the values to be more readable then&amp;nbsp; something like&lt;BR /&gt;call symputx ('Start', put(PriorMOEnd,Date8.));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By default I believe that these will be global.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 15:24:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Setting-a-calculated-value-as-a-Global-Variable/m-p/208579#M38786</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-08-27T15:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a calculated value as a Global Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Setting-a-calculated-value-as-a-Global-Variable/m-p/208580#M38787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Ballardw!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was playing around with the Symput and Symget functions but you put it in such simpler terms that it was very easy to follow. Thank you very much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If someone does use the above example for reference, I would change the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;CurrentDay=today();&lt;/P&gt;&lt;P&gt;PriorMOEnd = CurrentDay- (DAY(CurrentDay));&lt;/P&gt;&lt;P&gt;PriorMOStart = intnx('MONTH',PriorMOEnd - (day(PriorMOEnd)-1),-5) ;&lt;/P&gt;&lt;P&gt;format CurrentDay PriorMOEnd PriorMOStart DATE8.;&lt;/P&gt;&lt;P&gt;call symputx ('Start',PriorMOStart);&lt;/P&gt;&lt;P&gt;call symputx ('End',PriorMOEnd);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;%put Start= &amp;amp;start&amp;nbsp; End= &amp;amp;end;&lt;/P&gt;&lt;P&gt;If you want the values to be more readable then&amp;nbsp; something like&lt;BR /&gt;call symputx ('Start', put(PriorMOEnd,Date8.));&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 16:16:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Setting-a-calculated-value-as-a-Global-Variable/m-p/208580#M38787</guid>
      <dc:creator>cedpme</dc:creator>
      <dc:date>2015-08-27T16:16:26Z</dc:date>
    </item>
  </channel>
</rss>

