<?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: Create variables macros with semicolon (;) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520974#M141319</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;STRIKE&gt;"Actually, no, it does not require %SUPERQ"&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I'm afraid, if a macrovar were to have &amp;amp; in the resolved value, %bquote will throw warnings/errors, so %superq is the right way to go&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Which simply doesn't apply here. So YES, it does not require %SUPERQ.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the case where the value of &amp;amp;name1 contains a semicolon, %SUPERQ is not required, other functions work as well. If you know your data, and we do know it in this case, we can choose the proper function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It also sounds as if you are arguing to always use %SUPERQ even in situation where %BQUOTE will work because you never know when the value of the macro variable, which again is not the case.&lt;/P&gt;</description>
    <pubDate>Wed, 12 Dec 2018 20:03:43 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2018-12-12T20:03:43Z</dc:date>
    <item>
      <title>Create variables macros with semicolon (;)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520918#M141297</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hello, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have this macro that creates me variables macros. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I can't understand why on the outside of the macro tt(), variables macros created by call symputx do not display with the semicolon.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In the vmacro table, variables macros are created with semicolon. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The addition of % SUPERQ, to indeed, allows the display of these variables macros with&amp;nbsp; semicolon (;).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you in advance for your help.&lt;/SPAN&gt;&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;%macro tt();

data _null_;
set sashelp.class;
call symputx ('name'||left(_n_),catt(name,';') );
call symput ('nbr',_n_);
run;
%put name_in = &amp;amp;name1;
%do i=1 %to &amp;amp;nbr;
%global  nname&amp;amp;i;
%let nname&amp;amp;i=%SUPERQ(name&amp;amp;i);

%end;

%mend;

%tt;
%put &amp;amp;name1;
%put &amp;amp;nname1;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 17:49:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520918#M141297</guid>
      <dc:creator>mansour_ib_sas</dc:creator>
      <dc:date>2018-12-12T17:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables macros with semicolon (;)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520920#M141298</link>
      <description>It has nothing to do with SUPERQ and has to do with the GLOBAL statement. Macro variables within a macro are local and exist only within the macro. In comparison, a global variable is available almost anywhere in your session. Check the documentation for CALL SYMPUTX. The third parameter allows you to specify a macro variable as global or local.</description>
      <pubDate>Wed, 12 Dec 2018 17:53:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520920#M141298</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-12T17:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables macros with semicolon (;)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520925#M141302</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/121317"&gt;@mansour_ib_sas&lt;/a&gt;&amp;nbsp; Brilliant question who wants to understand macro quoting and it's nothing to do with symbol table in this case&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Correction:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put %superq(name1);
%put &amp;amp;nname1;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Full code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
%macro tt();

data _null_;
set sashelp.class;
call symputx ('name'||left(_n_),catt(name,';') );
call symput ('nbr',_n_);
run;
%put name_in = &amp;amp;name1;
%do i=1 %to &amp;amp;nbr;
%global  nname&amp;amp;i;
%let nname&amp;amp;i=%SUPERQ(name&amp;amp;i);

%end;

%mend;

%tt;
%put %superq(name1);
%put &amp;amp;nname1;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTES:&lt;/P&gt;
&lt;P&gt;First off, it's smart of you to quote aka make macro processor treat the semicolon as text rather than as step boundary for the statement. So when you resolved the quoted one, your resolution was perfect.&lt;/P&gt;
&lt;P&gt;Secondly, WRT call symputx, you did not do that. The macro processor processes your resolved &amp;amp;name1 as %put Alfred;; and writes Alfred to the log. The first semicolon which was resolved from &amp;amp;name1 ended the %put statement as the tokenisation was complete and sent to the compiler for execution.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So to counter this quote the unquoted value at the time of macro execution with the same %superq and you are done &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; HTH&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 18:24:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520925#M141302</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-12-12T18:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables macros with semicolon (;)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520926#M141303</link>
      <description>&lt;P&gt;&lt;SPAN&gt;The variables macros are created with the semicolon. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Their display outside the macro requires% SUPERQ. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I tried again with the third parameter and the result is the same&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro tt();

data _null_;
set sashelp.class;
call symputx ('name'||left(_n_),catt(name,';'),'G' );
run;
%end;
%mend;
%tt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Dec 2018 18:18:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520926#M141303</guid>
      <dc:creator>mansour_ib_sas</dc:creator>
      <dc:date>2018-12-12T18:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables macros with semicolon (;)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520933#M141305</link>
      <description>&lt;P&gt;To add some spice and to confirm your understanding, try using some other char besides semicolon and execute &lt;STRONG&gt;without %superq. &lt;/STRONG&gt;Your code will do fine. This will essentially help in understanding the tokenisation process and step boundaries for the compiler to execute sections of code queued in the input stack. In SAS, it's&lt;U&gt; far more slick and exquisite&lt;/U&gt; than many other programming languages.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 18:35:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520933#M141305</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-12-12T18:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables macros with semicolon (;)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520937#M141306</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/121317"&gt;@mansour_ib_sas&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;The variables macros are created with the semicolon. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Their display outside the macro requires% SUPERQ. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I tried again with the third parameter and the result is the same&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro tt();

data _null_;
set sashelp.class;
call symputx ('name'||left(_n_),catt(name,';'),'G' );
run;
%end;
%mend;
%tt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Actually, no, it does not require %SUPERQ&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can display the semicolon using&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put %bquote(&amp;amp;name1);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The unanswered question is: why doesn't &lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;%put &amp;amp;name1;&lt;/FONT&gt;&lt;/STRONG&gt; print the result with the semi-colon on the end? I don't have a complete explanation, but it seems like %put does not consider the semicolon at the end to be text, it considers it a character with special meaning, and so doesn't print it. However %bquote removes the special meaning from the semi-colon and treats the semi-colon as ordinary text.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 18:41:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520937#M141306</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-12-12T18:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables macros with semicolon (;)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520945#M141308</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;"Actually, no, it does not require %SUPERQ"&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I'm afraid, if a macrovar were to have &amp;amp; in the resolved value, %bquote will throw warnings/errors, so %superq is the right way to go&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Although not in OPs case but just pure diligence.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Example:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
%let j=%str(&amp;amp;abc;);

%put %bquote(&amp;amp;j);


%put %superq(j);&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;
&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;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/121317"&gt;@mansour_ib_sas&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;The variables macros are created with the semicolon. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Their display outside the macro requires% SUPERQ. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I tried again with the third parameter and the result is the same&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro tt();

data _null_;
set sashelp.class;
call symputx ('name'||left(_n_),catt(name,';'),'G' );
run;
%end;
%mend;
%tt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Actually, no, it does not require %SUPERQ&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can display the semicolon using&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put %bquote(&amp;amp;name1);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The unanswered question is: why doesn't &lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;%put &amp;amp;name1;&lt;/FONT&gt;&lt;/STRONG&gt; print the result with the semi-colon on the end? I don't have a complete explanation, but it seems like %put does not consider the semicolon at the end to be text, it considers it a character with special meaning, and so doesn't print it. However %bquote removes the special meaning from the semi-colon and treats the semi-colon as ordinary text.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 18:48:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520945#M141308</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-12-12T18:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables macros with semicolon (;)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520974#M141319</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;STRIKE&gt;"Actually, no, it does not require %SUPERQ"&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I'm afraid, if a macrovar were to have &amp;amp; in the resolved value, %bquote will throw warnings/errors, so %superq is the right way to go&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Which simply doesn't apply here. So YES, it does not require %SUPERQ.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the case where the value of &amp;amp;name1 contains a semicolon, %SUPERQ is not required, other functions work as well. If you know your data, and we do know it in this case, we can choose the proper function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It also sounds as if you are arguing to always use %SUPERQ even in situation where %BQUOTE will work because you never know when the value of the macro variable, which again is not the case.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 20:03:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520974#M141319</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-12-12T20:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables macros with semicolon (;)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520975#M141320</link>
      <description>&lt;P&gt;No not arguing at all. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Just feels that %superq is most ideal and safe&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And trust me , I ran into the very same issue without knowing a macro trigger (&amp;amp; %) to expect in a resolved value and the warnings/errors in the log warranted so much escalation and I was almost told off. I recall that situation and honestly feels to play safe in prod code. That's all&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My apologies, if the tone of the writing was mistaken&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 20:09:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520975#M141320</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-12-12T20:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables macros with semicolon (;)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520980#M141322</link>
      <description>&lt;P&gt;Ok, that's fine. I believe you can indeed know that you are in a situation where %BQUOTE works.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 20:19:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520980#M141322</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-12-12T20:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables macros with semicolon (;)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520985#M141325</link>
      <description>&lt;P&gt;Consider the key statement both inside and outside of a macro:&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 macrostatement"&gt;%put&lt;/SPAN&gt; name_in &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;name1&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Inside a macro, as part of the compilation process that defines the contents of the macro, SAS interprets the semicolon that it can see as ending the %PUT statement.&amp;nbsp; Whatever value is assigned to &amp;amp;NAME1 get printed, as you noticed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Outside a macro, there is no compilation process.&amp;nbsp; SAS just replaces &amp;amp;name1 with its value, and executes the generated statements, which are:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%put Amy;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(or whatever the value of &amp;amp;NAME1 is).&amp;nbsp; So outside of a macro, the first semicolon (generated by resolving &amp;amp;NAME1) ends the %PUT statement.&amp;nbsp; The second semicolon is just a null SAS statement.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 20:29:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520985#M141325</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-12-12T20:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables macros with semicolon (;)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520999#M141330</link>
      <description>&lt;P&gt;I did not know this (maybe I should have known it), thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But if the second semicolon is treated as a null SAS statement, wouldn't I still see the second semi-colon and the null SAS statement in the LOG? I looked for it, and don't see it.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 20:47:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-variables-macros-with-semicolon/m-p/520999#M141330</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-12-12T20:47:04Z</dc:date>
    </item>
  </channel>
</rss>

