<?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: Run Macro automatically for each argument in ListValues macro varaible in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614701#M179767</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/21262"&gt;@hashman&lt;/a&gt;&amp;nbsp; - Love the term macro abuse! Can't think of a better description. &lt;/P&gt;</description>
    <pubDate>Thu, 02 Jan 2020 02:06:59 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2020-01-02T02:06:59Z</dc:date>
    <item>
      <title>Run Macro automatically for each argument in ListValues macro varaible</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614568#M179691</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;Let's say that I have&amp;nbsp; a macro with one parameter(date ) .&lt;/P&gt;
&lt;P&gt;%macro RRR(Par);&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;.....&lt;/P&gt;
&lt;P&gt;%MEND RRR;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's say that there is a macro variable that contain list of dates with + sign between them.&lt;/P&gt;
&lt;P&gt;for example :&lt;/P&gt;
&lt;P&gt;%let ListValues=20191201+2191202+20191213+20191217+20191228;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can&amp;nbsp; run the macro manually for each value in &amp;amp;ListValues :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RRR(20191201);&lt;/P&gt;
&lt;P&gt;RRR(2191202);&lt;/P&gt;
&lt;P&gt;RRR(20191213);&lt;/P&gt;
&lt;P&gt;RRR(20191217);&lt;/P&gt;
&lt;P&gt;RRR(20191228);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My question is how can I run the macro automatically for each argument in &amp;amp;ListValues ?&lt;/P&gt;
&lt;P&gt;Please not that number of arguments in &amp;amp;ListValues might be different each time that I want to run it&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 16:23:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614568#M179691</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2019-12-31T16:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Run Macro automatically for each argument in ListValues macro varaible</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614572#M179695</link>
      <description>&lt;P&gt;Take a look here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sastraining/2015/01/30/sas-authors-tip-getting-the-macro-language-to-perform-a-do-loop-over-a-list-of-values/" target="_blank"&gt;https://blogs.sas.com/content/sastraining/2015/01/30/sas-authors-tip-getting-the-macro-language-to-perform-a-do-loop-over-a-list-of-values/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 16:37:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614572#M179695</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-12-31T16:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Run Macro automatically for each argument in ListValues macro varaible</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614574#M179697</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;Is it correct answer?&lt;/P&gt;
&lt;P&gt;Should it be under data _null_? or can I run it as I wrote in following code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%local   i   YYYYMMDD;
%do i=1 %to %sysfunc(countw(&amp;amp;ListValues));
%let YYYYMMDD= %scan(&amp;amp;ListValues, &amp;amp;i);
 %RRR( &amp;amp;YYYYMMDD.);
%end;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 31 Dec 2019 16:44:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614574#M179697</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2019-12-31T16:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Run Macro automatically for each argument in ListValues macro varaible</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614576#M179698</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp; While your questions are nice and I love your learning spirit, I am afraid the learning structure doesn't seem to be well designed or directed.&amp;nbsp; The idea is to basically get familiar with why macro, when macro and then the how. This essentially means the execution component or in other words the SAS language familiarity is needed first and foremost, which to my mind&amp;nbsp; seems to be missing. Once you get the hang of it, the need for parameter to substitute for constant values may arise and that's when the macro requirement surfaces.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I really hope your organization cares about development of skills of you folks in a nice linear way so that at some point you really feel that have actually learned and accomplished. To be honest, I regret to admit&amp;nbsp; at my&amp;nbsp; organization where everything is a macro right from simple assignments and beyond and they call this a coding style and the bureaucracy rejects any suggestions that I could offer. Jeez have mercy!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know you are smart, and I trust with the right guidance you will be able to accomplish things easily.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyways for your need:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro list;
 %let ListValues=20191201+2191202+20191213+20191217+20191228;
 %do i=1 %to %sysfunc(countw(&amp;amp;listvalues,+));
  %let need= %scan(&amp;amp;ListValues,&amp;amp;i,+);
  %RRR(&amp;amp;need)
 %end;
%mend list;

%t&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 16:51:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614576#M179698</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-12-31T16:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Run Macro automatically for each argument in ListValues macro varaible</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614577#M179699</link>
      <description>&lt;P&gt;May I ask if this way will also work well?&lt;/P&gt;
&lt;P&gt;Create a data set with dates values that will be arguments of macro.&lt;/P&gt;
&lt;P&gt;Data HelpTbl;&lt;/P&gt;
&lt;P&gt;input ddate;&lt;/P&gt;
&lt;P&gt;cards;&lt;/P&gt;
&lt;P&gt;20191201&lt;/P&gt;
&lt;P&gt;2191202&lt;/P&gt;
&lt;P&gt;20191213&lt;/P&gt;
&lt;P&gt;20191217&lt;/P&gt;
&lt;P&gt;20191228&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;Run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token macrobound"&gt;%macro&lt;/SPAN&gt; RunMacros&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token macrostatement"&gt;%do&lt;/SPAN&gt; i&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt; &lt;SPAN class="token macrostatement"&gt;%to&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;nobs&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="token procnames"&gt;Data&lt;/SPAN&gt; _null_&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
        &lt;SPAN class="token keyword"&gt;Set&lt;/SPAN&gt; HelpTbl&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;firstobs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;i obs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;i&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
        call &lt;SPAN class="token function"&gt;symputx&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'YYYYMMDD'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;ddate&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;    &lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="token macroname"&gt;%&lt;SPAN&gt;RRR&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;SPAN&gt;Par&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN class="token keyword"&gt;&lt;SPAN class="token string"&gt;YYYYMMDD&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;);&lt;/SPAN&gt;
&lt;SPAN class="token macrostatement"&gt;%end &lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token macrobound"&gt;%mend RunMacros&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token macroname"&gt;%RunMacros&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 17:08:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614577#M179699</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2019-12-31T17:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: Run Macro automatically for each argument in ListValues macro varaible</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614580#M179702</link>
      <description>&lt;P&gt;Thank you so much.&lt;/P&gt;
&lt;P&gt;I think that I have learned very well when I need macro but I still have question how to do it...&lt;/P&gt;
&lt;P&gt;I am really happy to learn from you and thank you again.&lt;/P&gt;
&lt;P&gt;Happy New Year!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 17:15:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614580#M179702</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2019-12-31T17:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Run Macro automatically for each argument in ListValues macro varaible</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614693#M179761</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt; - At least you haven't lost your sense of humour! Yes, putting all SAS code inside macros and calling it a coding style. I've seen it all too. I'd call it a pain in the proverbial. It is like building a house and only using a chainsaw to do it. Imagine how that would turn out!&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jan 2020 21:43:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614693#M179761</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-01-01T21:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: Run Macro automatically for each argument in ListValues macro varaible</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614694#M179762</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;May I ask if this way will also work well?&lt;/P&gt;
&lt;P&gt;Create a data set with dates values that will be arguments of macro.&lt;/P&gt;
&lt;P&gt;Data HelpTbl;&lt;/P&gt;
&lt;P&gt;input ddate;&lt;/P&gt;
&lt;P&gt;cards;&lt;/P&gt;
&lt;P&gt;20191201&lt;/P&gt;
&lt;P&gt;2191202&lt;/P&gt;
&lt;P&gt;20191213&lt;/P&gt;
&lt;P&gt;20191217&lt;/P&gt;
&lt;P&gt;20191228&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;Run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token macrobound"&gt;%macro&lt;/SPAN&gt; RunMacros&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token macrostatement"&gt;%do&lt;/SPAN&gt; i&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt; &lt;SPAN class="token macrostatement"&gt;%to&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;nobs&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="token procnames"&gt;Data&lt;/SPAN&gt; _null_&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
        &lt;SPAN class="token keyword"&gt;Set&lt;/SPAN&gt; HelpTbl&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;firstobs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;i obs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;i&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
        call &lt;SPAN class="token function"&gt;symputx&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'YYYYMMDD'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;ddate&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;    &lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="token macroname"&gt;%&lt;SPAN&gt;RRR&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;SPAN&gt;Par&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN class="token keyword"&gt;&lt;SPAN class="token string"&gt;YYYYMMDD&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;);&lt;/SPAN&gt;
&lt;SPAN class="token macrostatement"&gt;%end &lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token macrobound"&gt;%mend RunMacros&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token macroname"&gt;%RunMacros&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That could work, &lt;STRONG&gt;depending on whether you have created the NOBS macro variable&lt;/STRONG&gt; with the number of observations in the HELPTBL dataset before calling the RUNMACROS macro.&amp;nbsp; And also on what values the RRR macro needs for the PAR parameter.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Inside the loop you are running two steps.&amp;nbsp; The data step to find a specific observation and stuff the value of the DDATE variable it into a macro variable.&amp;nbsp; You are not formatting the value so it will be the raw number that you read into the numeric variable DDATA converted to a string of digits using the BEST32. format.&amp;nbsp; You then use the value of that macro variable in your call to the RRR macro.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jan 2020 22:06:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614694#M179762</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-01-01T22:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Run Macro automatically for each argument in ListValues macro varaible</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614695#M179763</link>
      <description>&lt;P&gt;Thank you Sir&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;&amp;nbsp; for chiming in. I can sense the &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;EM&gt;Déjà Vu&lt;/EM&gt;&lt;SPAN&gt;" with the banter that Guru&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/21262"&gt;@hashman&lt;/a&gt;&amp;nbsp; and I had over&amp;nbsp;a personal text exchange the notion&amp;nbsp;to accept &lt;EM&gt;what is not right as great&lt;/EM&gt; or in other words &lt;EM&gt;unlearn&lt;/EM&gt; the little I know to survive. lol&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; Of course, Life is unfair is obvious and known, but the rejection of asking to be reasonable seems unwelcome.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general, I'm learning life lessons or some that call EQ(emotional intelligence/quotient skills) to agree and be compliant with &lt;EM&gt;murphy's law-&lt;SPAN&gt;"stuff happens".&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Future advertisements for job skills would be like:- 1. Hard coders need only apply 2. Sphaghetti coders preferred 3. Master's degree in a quantitative STEM discipline required. &lt;EM&gt;(yeah right for the spaghetti crap&lt;/EM&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS Why am i still here, being relatively young and new to industry, got to make my resume look good, pay off the money i owe my mother who supported my college education. Perhaps I might have to think of using this time in finding a bird on a dating site and settle down.:&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://communities.sas.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jan 2020 22:30:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614695#M179763</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-01-01T22:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Run Macro automatically for each argument in ListValues macro varaible</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614700#M179766</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;:&lt;/P&gt;
&lt;P&gt;Without a sense of humor it would be easy to go cuckoo. Macro abuse is pretty ubiquitous but in certain industries it verges on insane. Tons of "code" concocted in this fashion I've had to protrude through often made me think that those writing it believe that if a piece of code is not encapsulated in a macro and then called as such it just won't run.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards&lt;/P&gt;
&lt;P&gt;Paul D. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jan 2020 01:31:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614700#M179766</guid>
      <dc:creator>hashman</dc:creator>
      <dc:date>2020-01-02T01:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: Run Macro automatically for each argument in ListValues macro varaible</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614701#M179767</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/21262"&gt;@hashman&lt;/a&gt;&amp;nbsp; - Love the term macro abuse! Can't think of a better description. &lt;/P&gt;</description>
      <pubDate>Thu, 02 Jan 2020 02:06:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Macro-automatically-for-each-argument-in-ListValues-macro/m-p/614701#M179767</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-01-02T02:06:59Z</dc:date>
    </item>
  </channel>
</rss>

