<?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: Adding parenthesis to a Macro Variable in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268304#M53097</link>
    <description>&lt;P&gt;Thanks so much BallardW.....that was super! Really appreciate your help. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 04 May 2016 15:17:03 GMT</pubDate>
    <dc:creator>Learn_uk</dc:creator>
    <dc:date>2016-05-04T15:17:03Z</dc:date>
    <item>
      <title>Adding quotes to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268090#M53040</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If I have a macro variable and I would like to put quotation marks&amp;nbsp;around it, is there a function to do this?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;Have:&amp;nbsp;%let ppl= 001-001 001-002;&lt;/P&gt;
&lt;P&gt;Want: &amp;nbsp;"001-001" "001-002"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 23:51:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268090#M53040</guid>
      <dc:creator>Learn_uk</dc:creator>
      <dc:date>2016-05-03T23:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Adding parenthesis to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268092#M53042</link>
      <description>&lt;P&gt;I think you mean quotes.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you you creatimg this manually? How do you plan to use it? There are ways but not easily so sometimes easier to do depending on how you create macro variable or how you plan to use it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 21:40:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268092#M53042</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-05-03T21:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Adding parenthesis to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268108#M53046</link>
      <description>&lt;P&gt;Thanks Reeza for your response. I am using it as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; select distinct subject into :ppl separated by ' '&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from opt.sv&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; where foldername = "Early Study Withdrawal";&lt;/P&gt;
&lt;P&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc print data=opt.sv(where=(subject = &amp;amp;ppl));&lt;BR /&gt; var subject folder svdtc;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: WHERE clause operator requires compatible variables.&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 22:11:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268108#M53046</guid>
      <dc:creator>Learn_uk</dc:creator>
      <dc:date>2016-05-03T22:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Adding parenthesis to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268109#M53047</link>
      <description>&lt;P&gt;I dont know why my SQL code threw in a smiley face! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 22:12:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268109#M53047</guid>
      <dc:creator>Learn_uk</dc:creator>
      <dc:date>2016-05-03T22:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Adding parenthesis to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268125#M53052</link>
      <description>&lt;P&gt;I think you may want something like&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
   select distinct quote(strip(subject)) into :ppl separated by ' '
   from opt.sv
   where foldername = "Early Study Withdrawal";
quit;

proc print data=opt.sv(where=(subject in( &amp;amp;ppl)));
   var subject folder svdtc;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The strip is to remove trailing blanks within the quotes which might cause issues with the comparison&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And you didn't want to test if subject was equal to a list of values but a member of the list.&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 23:21:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268125#M53052</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-05-03T23:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Adding parenthesis to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268134#M53057</link>
      <description>&lt;P&gt;Note that STRIP() will also remove any existing leading spaces, which could cause values to not match. &amp;nbsp;It is safer to use TRIM() in this case.&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 01:29:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268134#M53057</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2016-05-04T01:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Adding quotes to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268135#M53058</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let ppl= 001-001 001-002;
%let want="%sysfunc(tranwrd(%cmpres(&amp;amp;ppl),%str( ),%str(" ")))";

%put &amp;amp;want;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 May 2016 01:32:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268135#M53058</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-05-04T01:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Adding parenthesis to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268304#M53097</link>
      <description>&lt;P&gt;Thanks so much BallardW.....that was super! Really appreciate your help. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 15:17:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268304#M53097</guid>
      <dc:creator>Learn_uk</dc:creator>
      <dc:date>2016-05-04T15:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Adding quotes to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268305#M53098</link>
      <description>&lt;P&gt;Thanks Xia for that very interesting method...I am going to have to figure out what each element is doing! Complicated but quite impressive! Thx again! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 15:19:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268305#M53098</guid>
      <dc:creator>Learn_uk</dc:creator>
      <dc:date>2016-05-04T15:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: Adding parenthesis to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268326#M53107</link>
      <description>Absolutely. I tend to forget that because my data routinely gets leading spaces removed.</description>
      <pubDate>Wed, 04 May 2016 16:31:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268326#M53107</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-05-04T16:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Adding quotes to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268351#M53111</link>
      <description>Looks like you already have your answer, but I'd like to offer more features to support what you seem to seek.&lt;BR /&gt;1&lt;BR /&gt;The select into: clause provides a feature NOTRIM to maintain lead/trailing blanks - if you need those.&lt;BR /&gt;2&lt;BR /&gt;When selecting columns in a query, you can define an alternative format and here all those functions like trim/strip/quote etc become redundant if you use the $quote format like :&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;select distinct subject format= $quote200. into : pl separated by ', '&lt;BR /&gt;from opt.sv&lt;BR /&gt;where foldername = "Early Study Withdrawal"&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;That 200 length should accomodate a wide value of subject plus 2 for those quotation marks.&lt;BR /&gt;Beware that the $quote trims trailing blanks, but inside SAS data the comparison results would not be affected by that trim.&lt;BR /&gt;&lt;BR /&gt;It is interesting to compare the quoting format and function&lt;BR /&gt;- One trims and the other does not.</description>
      <pubDate>Wed, 04 May 2016 18:43:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268351#M53111</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2016-05-04T18:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: Adding quotes to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268455#M53146</link>
      <description>&lt;P&gt;Here is an alternative way by PRXCHANGE() .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let ppl= 001-001 001-002;
%let want=%sysfunc(prxchange(s/(\S+)/"\1"/,-1,&amp;amp;ppl));

%put &amp;amp;want;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 May 2016 07:43:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/268455#M53146</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-05-05T07:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Adding quotes to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/287444#M59144</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;just a small suggestion , when comparing text variable making them into same case, this will help resolve mis-match due to case inconsistency in the data..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Abhi&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jul 2016 09:49:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/287444#M59144</guid>
      <dc:creator>AbhiD</dc:creator>
      <dc:date>2016-07-27T09:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Adding quotes to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/561129#M157032</link>
      <description>&lt;P&gt;I'm a big fan of this solution, it helps&amp;nbsp; to use a macro variable date within teradata.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Excellent!&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 13:07:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/561129#M157032</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2019-05-23T13:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Adding quotes to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/561170#M157042</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have this solution, the result is correct but,&amp;nbsp; i have the error of evaluate.&lt;/P&gt;&lt;P&gt;Can someone help me understand his provenance?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro tt();
%global f;

%let a=001-001 001-002;

%let f= %str( );

%do i=1 %to %sysfunc(countw(&amp;amp;a.,' '));

%let f=%sysfunc(catx(%str( ),&amp;amp;f.,"%scan(&amp;amp;a.,&amp;amp;i,' ')") );

%end;

%mend;
%tt;
%put =&amp;amp;f.;

///////

ERROR: %SYSEVALF function has no expression to evaluate.
         %put =&amp;amp;f.; ="001-001" "001-002"&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 May 2019 14:45:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/561170#M157042</guid>
      <dc:creator>mansour_ib_sas</dc:creator>
      <dc:date>2019-05-23T14:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Adding quotes to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/561197#M157057</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/121317"&gt;@mansour_ib_sas&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When CATX is called for the first time (by %SYSFUNC), macro variable F contains only a blank, which is regarded equal to a null (i.e. empty) value in macro variable comparisons because trailing blanks are ignored. It appears to me that this lack of "&lt;EM&gt;character&lt;/EM&gt; contents" triggers the %SYSEVALF function to evaluate &amp;amp;F &lt;EM&gt;numerically&lt;/EM&gt;. After all, the CATX function does not only concatenate character strings, but also numeric arguments (which are converted to a character string, but only &lt;EM&gt;after&lt;/EM&gt; &lt;EM&gt;evaluation&lt;/EM&gt;), so &amp;amp;F could very well be a numeric expression which might contain non-integer operands and hence would need evaluation by %SYSEVALF. Calling %SYSEVALF with an empty argument, however, results in the error message you've reported (try&amp;nbsp;&lt;FONT face="courier new,courier"&gt;%let x=%sysevalf();&lt;/FONT&gt;).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To avoid the error message you could apply %IF/%THEN logic to start with CATX calls only after F has been populated with the first "word" of the character string in macro variable A. However, I would recommend to perform the concatenation in the form&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let f=&amp;amp;f "%scan(&amp;amp;a,&amp;amp;i,%str( ))";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;because this is simpler and doesn't require CATX at all (hence the error message cannot occur).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that I replaced your single blank in single quotes (&lt;FONT face="courier new,courier"&gt;' '&lt;/FONT&gt;) by &lt;FONT face="courier new,courier"&gt;%str( )&lt;/FONT&gt; because those single quotes &lt;EM&gt;in a %SYSFUNC call&lt;/EM&gt; would be interpreted as ordinary characters, here: delimiters, which is probably not what you intended. (So, please do the same in your COUNTW call.) Also, the initialization of macro variable F can be simplified to &lt;FONT face="courier new,courier"&gt;%let f=;&lt;/FONT&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 16:19:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/561197#M157057</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2019-05-23T16:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: Adding quotes to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/561205#M157060</link>
      <description>&lt;P&gt;There is no need to use the CAT... functions to concatenate macro variables.&amp;nbsp; Just expand the values where you want them and they will automatically be concatenated.&amp;nbsp; If you want something like a space between the values the just do:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let f=&amp;amp;f "%scan(&amp;amp;a,&amp;amp;i,%str( ))";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So if F is already empty the leading space before the quote will be ignored by the %LET.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you need to something other than space as the delimiter you might need to take special care to not add one in the front.&lt;/P&gt;
&lt;P&gt;You could start your loop at 2.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let f="%scan(&amp;amp;a,1,%str( ))";
%do i=2 %to ....&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You could test and treat the first value differently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I like to do for this "catx" type structure is use a different macro variable to contain the separation character (string) and set it empty to start and then set it after the first "concatenation".&amp;nbsp; Then no need for %IF logic.&lt;/P&gt;
&lt;P&gt;For example to make a comma separated list.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let f=;
%let sep=;
%do i=1 %to %sysfunc(countw(&amp;amp;a,%str( )));
  %let f=&amp;amp;f.&amp;amp;sep."%scan(&amp;amp;a,&amp;amp;i,%str( ))";
  %let sep=,;
%end;&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 16:39:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/561205#M157060</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-05-23T16:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: Adding quotes to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/561241#M157078</link>
      <description>&lt;P&gt;Now it's good. Thank you for your pertinents comments&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro tt();
%global f;
%let a=001-001 001-002;
%let f=;
%do i=1 %to %sysfunc(countw(&amp;amp;a.,%str( )));
%let f=&amp;amp;f. "%scan(&amp;amp;a.,&amp;amp;i,%str( ))" ;
%end;
%mend;
%tt;

%put f=&amp;amp;f.;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 May 2019 19:24:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/561241#M157078</guid>
      <dc:creator>mansour_ib_sas</dc:creator>
      <dc:date>2019-05-23T19:24:38Z</dc:date>
    </item>
  </channel>
</rss>

