<?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: Automatic Macros with Month conditions in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604837#M175402</link>
    <description>I believe this works for the first two portions, it won't handle the 8923771 case, but you can expand it with another IF condition before the last one. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;data want;&lt;BR /&gt;set have;&lt;BR /&gt;&lt;BR /&gt;array _month(*) month1-month6;&lt;BR /&gt;if range(of _month(*)) = 0 then call missing(month);&lt;BR /&gt;else do;&lt;BR /&gt;    max=max(of _month(*));&lt;BR /&gt;   index = whichn(max, of _month(*));&lt;BR /&gt;  month = vname(_month(index));&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;run;</description>
    <pubDate>Sun, 17 Nov 2019 20:10:53 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-11-17T20:10:53Z</dc:date>
    <item>
      <title>Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604818#M175390</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have data something like below ID, Stage, Date&lt;/P&gt;&lt;P&gt;1) I need to put an automatic date/month macros to pull data only for last six months.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="samp_stage.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34037i31F818FCA67FEF6E/image-size/large?v=v2&amp;amp;px=999" role="button" title="samp_stage.JPG" alt="samp_stage.JPG" /&gt;&lt;/span&gt;&lt;BR /&gt;Expecting results to be like : (please see attachment)&lt;/P&gt;&lt;P&gt;Conditions that i need :&lt;/P&gt;&lt;P&gt;1) Need to show only six months of data in the output&lt;/P&gt;&lt;P&gt;2) I need an automatic macros to pull the data only for last six months based on the input table month name&lt;/P&gt;&lt;P&gt;3) Stage condition: If any ID in stage one for last six months then Month should be blank (e.g., 8923768)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; If ID started with 1 and jumped to stage 2 then starting month of that stage 2 should be&amp;nbsp; populated in Month column (e.g., 8923767)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; If ID started with staged 2 and moved to stage 3 then stage 3 month should be populated (e.g., 8923769)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; If any ID starts with stage 2 or 3 and in last month ends with 1 then Month column should be blank (e.g., 8923771)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2019 17:52:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604818#M175390</guid>
      <dc:creator>kishoresamineni</dc:creator>
      <dc:date>2019-11-17T17:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604825#M175392</link>
      <description>&lt;P&gt;Some of your statements are confusing.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What do you mean by the phrase "automatic macro"?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You mention that you want to base something (what exactly?) on "&lt;SPAN&gt;the input table month name".&amp;nbsp; What does that mean?&amp;nbsp; Have you coded some type of date into the name of a dataset?&amp;nbsp; Does the dataset not also contain and actual variable that has that date value?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you want to select observations based on the last 6 months then just use a WHERE statement in whatever step you are using to read the data.&amp;nbsp; Depending on your definition of 6 months (is that 180 days? 182 days? 183 days? 5 fulls months just partial date for the last month? Or does in include the partial data for the 6th previous month also?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Is the cutoff from TODAY? Or some other Date?&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let cutoff=%sysfunc(today());
...
where date &amp;gt;= (&amp;amp;cutoff - 180);
where date &amp;gt;= (&amp;amp;cutoff - 182);
where date &amp;gt;= (&amp;amp;cutoff - 183);
where date &amp;gt;= intnx('month',&amp;amp;cutoff,-5,'beginning');
where date &amp;gt;= intnx('month',&amp;amp;cutoff,-6,'same');
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2019 18:15:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604825#M175392</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-11-17T18:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604827#M175393</link>
      <description>&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for confusing with my question....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Input data is the data that i have as a source data&lt;/P&gt;&lt;P&gt;2. Even though the data might be for years, but i need to pull the data only for last six months for e.g., if i run the report on&lt;/P&gt;&lt;P&gt;1st or 2nd of November then i need to pull the data from May to October. and so on...for Dec 1st or 2nd then data from June to November&lt;/P&gt;&lt;P&gt;3. I need to put the conditions for stage based on the six months data that i have&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2019 18:23:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604827#M175393</guid>
      <dc:creator>kishoresamineni</dc:creator>
      <dc:date>2019-11-17T18:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604835#M175400</link>
      <description>&lt;P&gt;1. Find the maximum date and store it into a macro variable - PROC SQL is good at this.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Use macro variable and INTNX or INTCK within a WHERE clause to filter results to just the 6 months needed.&lt;/P&gt;
&lt;P&gt;3. PROC TRANSPOSE will allow you reformat the data into the desired format.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. It seems like the 'month' should be the highest value IF it increases - use the functions on the array by checking if the range is increasing or decreasing.&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/42061"&gt;@kishoresamineni&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have data something like below ID, Stage, Date&lt;/P&gt;
&lt;P&gt;1) I need to put an automatic date/month macros to pull data only for last six months.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="samp_stage.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34037i31F818FCA67FEF6E/image-size/large?v=v2&amp;amp;px=999" role="button" title="samp_stage.JPG" alt="samp_stage.JPG" /&gt;&lt;/span&gt;&lt;BR /&gt;Expecting results to be like : (please see attachment)&lt;/P&gt;
&lt;P&gt;Conditions that i need :&lt;/P&gt;
&lt;P&gt;1) Need to show only six months of data in the output&lt;/P&gt;
&lt;P&gt;2) I need an automatic macros to pull the data only for last six months based on the input table month name&lt;/P&gt;
&lt;P&gt;3) Stage condition: If any ID in stage one for last six months then Month should be blank (e.g., 8923768)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; If ID started with 1 and jumped to stage 2 then starting month of that stage 2 should be&amp;nbsp; populated in Month column (e.g., 8923767)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; If ID started with staged 2 and moved to stage 3 then stage 3 month should be populated (e.g., 8923769)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; If any ID starts with stage 2 or 3 and in last month ends with 1 then Month column should be blank (e.g., 8923771)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2019 19:32:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604835#M175400</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-17T19:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604836#M175401</link>
      <description>&lt;P&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;would you please help me with the conditions for Month column.&lt;/P&gt;&lt;P&gt;Month column values should be populated based on the stages whether it is in 2 or 3 and which month it has been started from&lt;/P&gt;&lt;P&gt;1 to 2 or 2 to 3 that month should come up in Month column.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2019 19:40:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604836#M175401</guid>
      <dc:creator>kishoresamineni</dc:creator>
      <dc:date>2019-11-17T19:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604837#M175402</link>
      <description>I believe this works for the first two portions, it won't handle the 8923771 case, but you can expand it with another IF condition before the last one. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;data want;&lt;BR /&gt;set have;&lt;BR /&gt;&lt;BR /&gt;array _month(*) month1-month6;&lt;BR /&gt;if range(of _month(*)) = 0 then call missing(month);&lt;BR /&gt;else do;&lt;BR /&gt;    max=max(of _month(*));&lt;BR /&gt;   index = whichn(max, of _month(*));&lt;BR /&gt;  month = vname(_month(index));&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;run;</description>
      <pubDate>Sun, 17 Nov 2019 20:10:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604837#M175402</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-17T20:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604841#M175403</link>
      <description>&lt;P&gt;How about something like this? It will construct a WHERE statement for a 6 month period based on the Run Date you specify. I'm assuming your DATE variable is a proper SAS date.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let run_date = 02Nov2019;

data _null_;
  Last_Month = intnx("MONTH", "&amp;amp;run_date."d, -1, "END");
  call symputx('Last_Month', put(Last_Month, date9.));
  Month_Back6 = intnx("MONTH", "&amp;amp;run_date."d, -6, "END");
  call symputx('Month_Back6', put(Month_Back6, date9.));
run;

%put where date between "&amp;amp;Month_Back6."d and "&amp;amp;Last_Month"d;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2019 20:50:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/604841#M175403</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-11-17T20:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605022#M175491</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I was able to pull the data for last six month with macros...after that I am having some difficulty in putting the conditions that I am looking for.</description>
      <pubDate>Mon, 18 Nov 2019 14:46:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605022#M175491</guid>
      <dc:creator>kishoresamineni</dc:creator>
      <dc:date>2019-11-18T14:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605024#M175493</link>
      <description>Based on the stage I want to show the month name .... If they are in stage 2 then I need to show case that month name</description>
      <pubDate>Mon, 18 Nov 2019 14:47:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605024#M175493</guid>
      <dc:creator>kishoresamineni</dc:creator>
      <dc:date>2019-11-18T14:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605064#M175506</link>
      <description>&lt;P&gt;Please post your current code, as well as current output, and describe what output you want (i.e. how it would be different than your current output).&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2019 15:53:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605064#M175506</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2019-11-18T15:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605138#M175548</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am sorry I have some real-time act numbers which&lt;BR /&gt;I can't post it here.&lt;BR /&gt;&lt;BR /&gt;There is the stage I am in right now&lt;BR /&gt;ID Stage Date&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Need to create a new column as MONTH and need to&lt;BR /&gt;populate month names into MONTH column based on stage and date&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Nov 2019 18:20:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605138#M175548</guid>
      <dc:creator>kishoresamineni</dc:creator>
      <dc:date>2019-11-18T18:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605164#M175567</link>
      <description>&lt;P&gt;Something like this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;month = put(date, monname12.);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 18 Nov 2019 19:17:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605164#M175567</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-11-18T19:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605168#M175570</link>
      <description>Need to show Month name in a newly created MONTH column based on date column values and stage...&lt;BR /&gt;If stage 2 in last few months then starting month of stage 2 should be in MONTH column</description>
      <pubDate>Mon, 18 Nov 2019 19:25:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605168#M175570</guid>
      <dc:creator>kishoresamineni</dc:creator>
      <dc:date>2019-11-18T19:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605191#M175579</link>
      <description>How does the code I provided work? Does it work except for the case identified?&lt;BR /&gt;&lt;BR /&gt;If you can, make fake data and post your code.</description>
      <pubDate>Mon, 18 Nov 2019 20:31:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605191#M175579</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-18T20:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605195#M175581</link>
      <description>Hi Reeza,&lt;BR /&gt;&lt;BR /&gt;It did work for month part...now I could successfully pull data for last six months by using macro variables&lt;BR /&gt;&lt;BR /&gt;case conditions need to be sorted</description>
      <pubDate>Mon, 18 Nov 2019 20:39:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605195#M175581</guid>
      <dc:creator>kishoresamineni</dc:creator>
      <dc:date>2019-11-18T20:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605198#M175583</link>
      <description>That's not clear. Is your question answered then? If not, please be very specific with what's needed now. It would hlep if you can show more data/code otherwise you're going to just get general approaches, which is fine, but it does take longer.</description>
      <pubDate>Mon, 18 Nov 2019 20:40:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605198#M175583</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-18T20:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605200#M175585</link>
      <description>Hi Reeza,&lt;BR /&gt;&lt;BR /&gt;My first portion which is to pull the data for last 6 months using macros is sorted out.&lt;BR /&gt;&lt;BR /&gt;Pending thing : conditions where stage is 2 or 3 and month name should be highlighted in a MONTH column by using Date column&lt;BR /&gt;Stage conditions might be different if it is 1 then MONTH should be blank. (As shown in attachment with results example)</description>
      <pubDate>Mon, 18 Nov 2019 20:46:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605200#M175585</guid>
      <dc:creator>kishoresamineni</dc:creator>
      <dc:date>2019-11-18T20:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605204#M175589</link>
      <description>Have you tried modifying my code?&lt;BR /&gt;&lt;BR /&gt;RANGE() provides the difference between the max and min value in the row. &lt;BR /&gt;&lt;BR /&gt;You need to add another ELSE IF statement (to my code) that considers if you start with 1 and end with 1 although there's a two in the middle.</description>
      <pubDate>Mon, 18 Nov 2019 20:57:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605204#M175589</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-18T20:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605206#M175591</link>
      <description>I haven't tried that piece of code... would you please elaborate that snippet</description>
      <pubDate>Mon, 18 Nov 2019 21:01:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605206#M175591</guid>
      <dc:creator>kishoresamineni</dc:creator>
      <dc:date>2019-11-18T21:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Macros with Month conditions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605215#M175598</link>
      <description>I'd rather you tried and then I'd be happy to help you fix it as needed.</description>
      <pubDate>Mon, 18 Nov 2019 21:23:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automatic-Macros-with-Month-conditions/m-p/605215#M175598</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-18T21:23:06Z</dc:date>
    </item>
  </channel>
</rss>

