<?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: Proc SQL to create a macro in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522725#M4489</link>
    <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the suggestion.&amp;nbsp; That makes sense going forward!&lt;/P&gt;</description>
    <pubDate>Wed, 19 Dec 2018 22:08:33 GMT</pubDate>
    <dc:creator>LEINAARE</dc:creator>
    <dc:date>2018-12-19T22:08:33Z</dc:date>
    <item>
      <title>Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522061#M4346</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a dataset with three variables and approximately 400 observations.&amp;nbsp; One of the variables 'Diagnosis' is a character variable containing&amp;nbsp;diagnostic codes of interest.&amp;nbsp;&amp;nbsp;I am trying to use PROC SQL to create a macro variable that will list all the values of 'diagnosis' separated by quotation marks and commas (',').&amp;nbsp; Ultimately, I would like the macro to generate code that would be structured like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'code1','code2','code3','code4','code5','code6' .... 'code400'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I intend to use it with print procedures such as this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=medical;
    where diagnosis in (&amp;amp;diagnosis);
    var unique_id diagnosis desc;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code I developed to create a macro called 'diagnosis' from values of the diagnosis&amp;nbsp;variable is this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql noprint;
     select diagnosis
          into :diagnosis separated by "','"
     from work.diagnosis;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;It seems to have generated a list of values from each observation separated by ',' for each.&amp;nbsp; However, I keep running into errors.&amp;nbsp; I thought perhaps it was because the first and last values would not be captured with leading and training commas, so I wrote that into my print procedure as so:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=medical_claims;
     where diag in ('&amp;amp;diagnosis');
     var unique_id diag;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Unfortunately, it is not running.&amp;nbsp; Could anyone provide some insight as to why this would not produce a string of character values captured within quotation marks and commas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ted&lt;/P&gt;</description>
      <pubDate>Mon, 17 Dec 2018 23:13:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522061#M4346</guid>
      <dc:creator>LEINAARE</dc:creator>
      <dc:date>2018-12-17T23:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522062#M4347</link>
      <description>&lt;P&gt;Try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql ;
     select quote(strip(diagnosis))
          into :diagnosis separated by ', '
     from work.diagnosis;
quit;

 

proc print data=medical_claims;
     where diag in (&amp;amp;diagnosis);
     var unique_id diag;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Dec 2018 23:31:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522062#M4347</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-12-17T23:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522063#M4348</link>
      <description>Make sure there's a space between the comma otherwise you get that lovely message of something changing in the future.</description>
      <pubDate>Mon, 17 Dec 2018 23:27:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522063#M4348</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-17T23:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522064#M4349</link>
      <description>&lt;P&gt;Are you still getting that ?:) Or is it we have the best performing SAS software at DePaul labs. Hmm but great diligence indeed. Point taken&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;7746 proc sql ;&lt;BR /&gt;7747 select quote(strip(name))&lt;BR /&gt;7748 into :name separated by ','&lt;BR /&gt;7749 from sashelp.class&lt;BR /&gt;7750 where name in ('Alfred','Mary');&lt;BR /&gt;7751 quit;&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt; real time 0.04 seconds&lt;BR /&gt; cpu time 0.03 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;7756 proc print data=w noobs;&lt;BR /&gt;7757 where name in (&amp;amp;name);&lt;BR /&gt;7758 run;&lt;/P&gt;
&lt;P&gt;NOTE: There were 2 observations read from the data set WORK.W.&lt;BR /&gt; WHERE name in ('Alfred', 'Mary');&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt; real time 0.04 seconds&lt;BR /&gt; cpu time 0.00 seconds&lt;/P&gt;</description>
      <pubDate>Mon, 17 Dec 2018 23:31:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522064#M4349</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-12-17T23:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522067#M4350</link>
      <description>Oh, you're right! It's gone now.</description>
      <pubDate>Mon, 17 Dec 2018 23:44:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522067#M4350</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-17T23:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522076#M4351</link>
      <description>&lt;P&gt;Just to provide a little clarity on the terminology, which may help you in future discussions or reading — you are not creating a macro. You are assigning values to a macro variable.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 00:12:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522076#M4351</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-12-18T00:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522164#M4368</link>
      <description>&lt;P&gt;Why go through the issue of creating a messy set of coding with macro variables, and quoting and all that malarky, a simple change would remove all that:&lt;/P&gt;
&lt;PRE&gt;proc sql;
  create table med_claims as
  select *
  from   medical_claims
  where diag in (select diagnosis from work.diagnosis);
quit;

proc print data=med_claims;
  var...;
run;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Dec 2018 11:46:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522164#M4368</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-12-18T11:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522201#M4371</link>
      <description>&lt;P&gt;Thanks for the clarification.&amp;nbsp; I am just beginning to explore proc sql.&amp;nbsp; So that is a helpful distinction.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 13:21:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522201#M4371</guid>
      <dc:creator>LEINAARE</dc:creator>
      <dc:date>2018-12-18T13:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522203#M4373</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your suggestion.&amp;nbsp; Using the quote(strip()) functions worked great.&amp;nbsp; I have not seen that before.&amp;nbsp; Also, sorry for the delayed response.&amp;nbsp; I left my office shortly after posting the question yesterday.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ted&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 13:25:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522203#M4373</guid>
      <dc:creator>LEINAARE</dc:creator>
      <dc:date>2018-12-18T13:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522214#M4374</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks responding with the proc sql modification.&amp;nbsp; I am new to proc sql (I actually watched my first training video last week).&amp;nbsp; Am I correct to interpret that the&amp;nbsp;will subset&amp;nbsp;an output dataset called "med_claims" that contains only observations with values contained in the "diagnosis" variable from the work.diagnosis dataset?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ted&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 13:45:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522214#M4374</guid>
      <dc:creator>LEINAARE</dc:creator>
      <dc:date>2018-12-18T13:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522215#M4375</link>
      <description>&lt;P&gt;Yes, that is correct.&amp;nbsp; It is using whats called a sub-query, so whatever data is resolved by the inside query is then returned to the outer queries where clause.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 13:47:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522215#M4375</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-12-18T13:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522218#M4376</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;.&amp;nbsp; This will be very useful in the future!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 14:05:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522218#M4376</guid>
      <dc:creator>LEINAARE</dc:creator>
      <dc:date>2018-12-18T14:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522226#M4378</link>
      <description>&lt;P&gt;Good morning&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/203435"&gt;@LEINAARE&lt;/a&gt;&amp;nbsp;You're very welcome. Thank you posting questions. SAS is a video game for me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 14:17:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522226#M4378</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-12-18T14:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522370#M4421</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you again for the great suggestions yesterday.&amp;nbsp; I have one more question regarding this code.&amp;nbsp; I realized later that using the "into" statement creates a local macro.&amp;nbsp; For my purposes, I need macros created from this proc sql to be global.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a macro to run the proc sql code three times (shown below).&amp;nbsp; Each time, I want to create a different global macro variable to use throughout other sections of&amp;nbsp;code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro makemacro(var,macro);
	%global macro;
	%let macro=&amp;amp;macro;
	proc sql noprint;
		select quote(strip(&amp;amp;var))
			into :&amp;amp;macro separated by ','
		from &amp;amp;var;
	%put &amp;amp;macro;
	quit;
%mend makemacro;&lt;BR /&gt;
%makemacro(ndc,ndcmac);
%makemacro(procedure,procmac);
%makemacro(diagnosis,diagmac);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I did some research on my own, and found the %global option.&amp;nbsp; However, I get the following error message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1127  %makemacro(ndc,ndcmac);
ERROR: Attempt to %GLOBAL a name (MACRO) which exists in a local environment.
NOTE: PROCEDURE SQL used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Can anyone offer a suggestion to correct this?&amp;nbsp; I have experimented around, but cannot find anything to help resolve it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ted&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 22:48:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522370#M4421</guid>
      <dc:creator>LEINAARE</dc:creator>
      <dc:date>2018-12-18T22:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522374#M4422</link>
      <description>&lt;P&gt;Try assigning different name in the assignment as opposed to&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token macroname"&gt;%let&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;macro&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 procnames"&gt;macro&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;something like&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token macroname"&gt;%let&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;macro1&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 procnames"&gt;macro&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 22:55:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522374#M4422</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-12-18T22:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522457#M4438</link>
      <description>&lt;P&gt;You are just making things worse for yourself.&amp;nbsp; Creating global variables can cause system wide bugs which are very hard to track down.&amp;nbsp; I would really advise you to re-think your process.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Dec 2018 09:22:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522457#M4438</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-12-19T09:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522609#M4460</link>
      <description>I would really  really recommend not naming your macro variables or macros's macros. You'll get weird behaviour that you're not expecting and it's just a recipe for debugging hell. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Dec 2018 16:05:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522609#M4460</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-19T16:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522724#M4488</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the advice.&amp;nbsp; I found a way to perform my desired procedures using local macros within the program.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Dec 2018 22:07:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522724#M4488</guid>
      <dc:creator>LEINAARE</dc:creator>
      <dc:date>2018-12-19T22:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL to create a macro</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522725#M4489</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the suggestion.&amp;nbsp; That makes sense going forward!&lt;/P&gt;</description>
      <pubDate>Wed, 19 Dec 2018 22:08:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-SQL-to-create-a-macro/m-p/522725#M4489</guid>
      <dc:creator>LEINAARE</dc:creator>
      <dc:date>2018-12-19T22:08:33Z</dc:date>
    </item>
  </channel>
</rss>

