<?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: increment month in do loop macro in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626269#M184689</link>
    <description>&lt;PRE&gt;SYMBOLGEN: Macro variable MONTH_6 resolves to 77798&lt;/PRE&gt;
&lt;P&gt;Does that seem remotely correct? It seems as if you have not assigned the value of &amp;amp;MONTH_6 in a meaningful way.&lt;/P&gt;</description>
    <pubDate>Thu, 20 Feb 2020 18:34:49 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2020-02-20T18:34:49Z</dc:date>
    <item>
      <title>increment month in do loop macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626214#M184663</link>
      <description>&lt;P&gt;I'm facing this weird issue&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to use the yearmonth timestamp as table name to my database table but it's getting error out :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%macro increment_yymm;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;% do i= 0 %to 5 ;&lt;/P&gt;
&lt;P&gt;%let new_mnt = %sysfunc(intnx(month,%sysfunc(%input(&amp;amp;Month_1.,$6.),i,b);&amp;nbsp;&lt;/P&gt;
&lt;P&gt;create table mylib.table_&amp;amp;new_mnt. as&lt;/P&gt;
&lt;P&gt;select * from table1_&amp;amp;new_mnt. ;&lt;/P&gt;
&lt;P&gt;%end;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;quit;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;%mend;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;%increment_yymm;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;Error:1Macro keyword input appears as text&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;A dummy macro will be compiled.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Approach 2&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%macro increment_yymm;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;% do i= 0 %to 5 ;&lt;/P&gt;
&lt;P&gt;%let new_mnt = %sysfunc(intnx(month,%sysfunc(input(&amp;amp;Month_1.,$6.),i,b);&amp;nbsp;&lt;/P&gt;
&lt;P&gt;create table mylib.table_&amp;amp;new_mnt. as&lt;/P&gt;
&lt;P&gt;select * from table1_&amp;amp;new_mnt. ;&lt;/P&gt;
&lt;P&gt;%end;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;quit;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;%mend;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;%increment_yymm;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Error: the input function referenced in %sysfunc is not found&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Error:&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;%sysevalf function has no expression to evaluate&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Error: Argument 2 to function intnx referenced by %sysfunc is not a&amp;nbsp; number&lt;/FONT&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;</description>
      <pubDate>Thu, 20 Feb 2020 16:47:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626214#M184663</guid>
      <dc:creator>LearnByMistk</dc:creator>
      <dc:date>2020-02-20T16:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: increment month in do loop macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626216#M184665</link>
      <description>&lt;P&gt;What does &amp;amp;month_1 look like?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This link has an example of looping through dates in a macro.&lt;BR /&gt;Examples of common macro usage&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/SAS-9-4-Macro-Language-Reference-Has-a-New-Appendix/ta-p/291716" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/SAS-9-4-Macro-Language-Reference-Has-a-New-Appendix/ta-p/291716&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/29644"&gt;@LearnByMistk&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I'm facing this weird issue&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to use the yearmonth timestamp as table name to my database table but it's getting error out :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%macro increment_yymm;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;% do i= 0 %to 5 ;&lt;/P&gt;
&lt;P&gt;%let new_mnt = %sysfunc(intnx(month,%sysfunc(%input(&amp;amp;Month_1.,$6.),i,b);&amp;nbsp;&lt;/P&gt;
&lt;P&gt;create table mylib.table_&amp;amp;new_mnt. as&lt;/P&gt;
&lt;P&gt;select * from table1_&amp;amp;new_mnt. ;&lt;/P&gt;
&lt;P&gt;%end;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;quit;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;%mend;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;%increment_yymm;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;Error:1Macro keyword input appears as text&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;A dummy macro will be compiled.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Approach 2&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%macro increment_yymm;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;% do i= 0 %to 5 ;&lt;/P&gt;
&lt;P&gt;%let new_mnt = %sysfunc(intnx(month,%sysfunc(input(&amp;amp;Month_1.,$6.),i,b);&amp;nbsp;&lt;/P&gt;
&lt;P&gt;create table mylib.table_&amp;amp;new_mnt. as&lt;/P&gt;
&lt;P&gt;select * from table1_&amp;amp;new_mnt. ;&lt;/P&gt;
&lt;P&gt;%end;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;quit;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;%mend;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;%increment_yymm;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Error: the input function referenced in %sysfunc is not found&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Error:&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;%sysevalf function has no expression to evaluate&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Error: Argument 2 to function intnx referenced by %sysfunc is not a&amp;nbsp; number&lt;/FONT&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;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 16:57:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626216#M184665</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-02-20T16:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: increment month in do loop macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626232#M184672</link>
      <description>&lt;P&gt;do i= 0 to 5 ;&lt;/P&gt;
&lt;P&gt;so intnx should work as&amp;nbsp; increment month_1 +0 ie same month&lt;/P&gt;
&lt;P&gt;increment month_1 +1 ie next month ie 201908&amp;nbsp;&lt;/P&gt;
&lt;P&gt;increment month_1 +2 ie next month ie 201909 and so on&lt;/P&gt;
&lt;P&gt;&amp;nbsp;so it will increment like&amp;nbsp;&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 96pt;" border="0" width="128" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD width="64" height="20" class="xl63" style="height: 15.0pt; width: 48pt;"&gt;Month_1&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl63" style="border-left: none; width: 48pt;"&gt;201907&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl63" style="height: 15.0pt; border-top: none;"&gt;Month_2&lt;/TD&gt;
&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;201908&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl63" style="height: 15.0pt; border-top: none;"&gt;Month_3&lt;/TD&gt;
&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;201909&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl63" style="height: 15.0pt; border-top: none;"&gt;Month_4&lt;/TD&gt;
&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;201910&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl63" style="height: 15.0pt; border-top: none;"&gt;Month_5&lt;/TD&gt;
&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;201911&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl63" style="height: 15.0pt; border-top: none;"&gt;Month_6&lt;/TD&gt;
&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;201912&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl63" style="height: 15.0pt; border-top: none;"&gt;Month_7&lt;/TD&gt;
&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;202001&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Thu, 20 Feb 2020 17:31:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626232#M184672</guid>
      <dc:creator>LearnByMistk</dc:creator>
      <dc:date>2020-02-20T17:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: increment month in do loop macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626234#M184673</link>
      <description>&lt;P&gt;So you have some macro variable that has the starting month as YYYYMM digits?&lt;/P&gt;
&lt;P&gt;And you have some other macro variable that has a number, like 5, and you then want to run the loop 6 times?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro month_loop(start_month,n);
%Local offset basedate month ;
%let basedate=%sysfunc(inputn(&amp;amp;start_month,yymmn6.));
%do offset=0 %to &amp;amp;n;
  %let month=%sysfunc(intnx(month,&amp;amp;basedate,&amp;amp;offset),yymmn6.);
... rest of code here that uses MONTH and OFFSET ...
%end;
%mend month_loop;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or did you want to run it only 5 times and have the index count from 1?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro month_loop(start_month,n);
%Local month_num basedate month ;
%let basedate=%sysfunc(inputn(&amp;amp;start_month,yymmn6.));
%do month_num =1 %to &amp;amp;n;
  %let month=%sysfunc(intnx(month,&amp;amp;basedate,&amp;amp;month_num -1),yymmn6.);
... rest of code here that uses MONTH and month_num ...
%end;
%mend month_loop;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 17:44:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626234#M184673</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-02-20T17:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: increment month in do loop macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626236#M184675</link>
      <description>&lt;PRE&gt;% do i= 0 %to 5 ;&lt;/PRE&gt;
&lt;P&gt;So the obvious problem here is that there is a space between % and DO.&amp;nbsp;I doubt anything after that will work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To further your debugging in the future, please use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mprint;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;at the start of your program, this writes useful information into the log. If you still need even further information, use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mprint symbolgen mlogic;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 18:00:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626236#M184675</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-20T18:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: increment month in do loop macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626266#M184687</link>
      <description>&lt;P&gt;options mprint mlogic symbolgen;&lt;BR /&gt;%macro month_date_ftch;&lt;BR /&gt;%local month_num basemonth month;&lt;BR /&gt;proc sql stimer ;&lt;BR /&gt;%let basemonth=%sysfunc(inputn(&amp;amp;Month_6.,yymmn6.));&lt;BR /&gt;%do month_num =0 %to 5;&lt;BR /&gt;%let month= %sysfunc(intnx(month,&amp;amp;basemonth,&amp;amp;month_num-1),yymmn6.);&lt;BR /&gt;%put &amp;amp;month.;&lt;BR /&gt;create table perm.mytab_&amp;amp;month. as &lt;BR /&gt;select a.sbscr_nbr,a.yyyymm,a.qoe_global_score from pd.QOE_SUMRY_&amp;amp;month. a&lt;BR /&gt;,perm.el_a_exl_sub_&amp;amp;yyyymm. b&lt;BR /&gt;where &lt;BR /&gt;b.sbscr_nbr=a.sbscr_nbr;&lt;BR /&gt;%end;&lt;BR /&gt;quit;&lt;BR /&gt;%MEND month_date_ftch;&lt;BR /&gt;%month_date_ftch;&lt;/P&gt;
&lt;P&gt;SYMBOLGEN: Macro variable MONTH_6 resolves to 77798&lt;BR /&gt;MLOGIC(MONTH_DATE_FTCH): %DO loop beginning; index variable MONTH_NUM; start value is 0; stop value is 5; by value is 1. &lt;BR /&gt;MLOGIC(MONTH_DATE_FTCH): %LET (variable name is MONTH)&lt;BR /&gt;SYMBOLGEN: Macro variable BASEMONTH resolves to 2125558&lt;BR /&gt;SYMBOLGEN: Macro variable MONTH_NUM resolves to 0&lt;BR /&gt;MLOGIC(MONTH_DATE_FTCH): %PUT &amp;amp;month.&lt;BR /&gt;SYMBOLGEN: Macro variable MONTH resolves &lt;FONT color="#FF0000"&gt;to 777907&lt;/FONT&gt;&lt;BR /&gt;777907&lt;BR /&gt;SYMBOLGEN: Macro variable MONTH resolves to 777907&lt;BR /&gt;SYMBOLGEN: Macro variable MONTH resolves to 777907&lt;BR /&gt;SYMBOLGEN: Macro variable YYYYMM resolves to 202001&lt;BR /&gt;MPRINT(MONTH_DATE_FTCH): create table perm.mytab_777907 as select a.sbscr_nbr,a.yyyymm,a.qoe_global_score from &lt;BR /&gt;pd.QOE_SBSCR_SUMMARY_777907 a ,perm.el_a_exl_sub_202001 b where b.sbscr_nbr=a.sbscr_nbr;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: File PD.QOE_SUMRY_777907.DATA does not exist.&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;why the highlightd part isnot converting as yymmn6. format is it coz &amp;amp;month_6. is a char field being a macro variable&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 18:28:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626266#M184687</guid>
      <dc:creator>LearnByMistk</dc:creator>
      <dc:date>2020-02-20T18:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: increment month in do loop macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626269#M184689</link>
      <description>&lt;PRE&gt;SYMBOLGEN: Macro variable MONTH_6 resolves to 77798&lt;/PRE&gt;
&lt;P&gt;Does that seem remotely correct? It seems as if you have not assigned the value of &amp;amp;MONTH_6 in a meaningful way.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 18:34:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626269#M184689</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-20T18:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: increment month in do loop macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626270#M184690</link>
      <description>&lt;P&gt;You started with MONTH_6 having a value of&amp;nbsp;&lt;SPAN&gt;77798.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The code is assuming that MONTH_6 has a value in YYYYMM digits.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 18:34:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626270#M184690</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-02-20T18:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: increment month in do loop macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626276#M184693</link>
      <description>&lt;P&gt;thanks I tired to defined month_6 again with in the macro and now it's running.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 18:41:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626276#M184693</guid>
      <dc:creator>LearnByMistk</dc:creator>
      <dc:date>2020-02-20T18:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: increment month in do loop macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626277#M184694</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks alot , really appreciate the help.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 18:42:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/increment-month-in-do-loop-macro/m-p/626277#M184694</guid>
      <dc:creator>LearnByMistk</dc:creator>
      <dc:date>2020-02-20T18:42:15Z</dc:date>
    </item>
  </channel>
</rss>

