<?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: empty list stored in a macro code in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463148#M70451</link>
    <description>&lt;P&gt;it did not work. can you please be more specific on what I should do here?&lt;/P&gt;</description>
    <pubDate>Thu, 17 May 2018 20:24:24 GMT</pubDate>
    <dc:creator>tampham92</dc:creator>
    <dc:date>2018-05-17T20:24:24Z</dc:date>
    <item>
      <title>empty list stored in a macro code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463122#M70446</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ran this code below to store a list of values into a macro variable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;select distinct AccountTypeCode1 into :Merrill separated by ','&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;from ACCOUNT_CODE_MASTER&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;where GLNumber1 = '208143' AND TaxPayerIDRAFT = '135674085'&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Then I used that list in a data step as below&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;DATA TEST;&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;SET have;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;TEMP = input(Code, best3.);&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;format TEMP z3.;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;if&amp;nbsp;temp in (&amp;amp;Merill.) then prod = "Merill"&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;else prod = .;&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;RUN;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;but the log gave me error saying that&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;WARNING: Apparent symbolic reference CONS_IA_BANKSAFE not resolved.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;So I went back to the first piece of code to detect the issue and I found out that no rows are selected for that &amp;amp;Merill. macro.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Basically, I wanna keep the first piece of code whether I determine the list, but then in the DATA step, how can I go around an empty macro? I have several macro variables within that DATA STEP, but when SAS detects an empty macro, it gave me error and does not process the rest of the code.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 19:48:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463122#M70446</guid>
      <dc:creator>tampham92</dc:creator>
      <dc:date>2018-05-17T19:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: empty list stored in a macro code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463125#M70447</link>
      <description>&lt;P&gt;You can initialize the macro variable yourself.&amp;nbsp; For example, before running PROC SQL:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%let Merrill = 'You will never find this one!';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then SQL either replaces the value or (if no matches are found) leaves it alone.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Other items to note ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your error message does not refer to &amp;amp;MERRILL.&amp;nbsp; It refers to &amp;amp;CONS_IA_BANKSAFE.&amp;nbsp; Presumably, you are posting the right section of code here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ELSE PROD = .;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's a missing value for a numeric variable.&amp;nbsp; That's not compatible with PROD being a character variable that might be set to "Merrill".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#ff0000"&gt;********************** EDITED:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#ff0000"&gt;Sorry, didn't notice that you were using a numeric variable TEMP.&amp;nbsp; So my answer has to be amended to assign a value that would never actually be found:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#ff0000"&gt;%let Merrill = -5;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#ff0000"&gt;That statement should be inserted into the program just before PROC SQL.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#ff0000"&gt;That will handle the original problem of a macro variable not being found.&amp;nbsp; There are still other issues, but that change will get&amp;nbsp; you through the first issue.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 21:30:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463125#M70447</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-05-17T21:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: empty list stored in a macro code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463129#M70448</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/176468"&gt;@tampham92&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;how can I go around an empty macro? I have several macro variables within that DATA STEP, but when SAS detects an empty macro, it gave me error and does not process the rest of the code.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;After PROC SQL&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%if &amp;amp;merrill ^= %then %do;

data test;
 ....
run;

%end;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 May 2018 19:57:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463129#M70448</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-05-17T19:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: empty list stored in a macro code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463139#M70449</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;if&amp;nbsp;temp in (&amp;amp;Merill.) and &lt;STRONG&gt;not missing("&amp;amp;Merill.")&lt;/STRONG&gt; then prod = "Merill"&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 20:27:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463139#M70449</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-05-17T20:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: empty list stored in a macro code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463147#M70450</link>
      <description>&lt;P&gt;where do I insert that %if code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code is below&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;select distinct AccountTypeCode1 into :Merrill separated by ','&lt;BR /&gt;from ACCOUNT_CODE_MASTER&lt;BR /&gt;where GLNumber1 = '208143' AND TaxPayerIDRAFT = 'xxxxx'&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;DATA TEST;&lt;BR /&gt;SET have;&lt;/P&gt;&lt;P&gt;TEMP = input(AccountTypeCode, best3.);&lt;BR /&gt;format TEMP z3.;&lt;/P&gt;&lt;P&gt;if temp IN (&amp;amp;Merrill.) then QRMSA = "Merrill";&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 20:23:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463147#M70450</guid>
      <dc:creator>tampham92</dc:creator>
      <dc:date>2018-05-17T20:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: empty list stored in a macro code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463148#M70451</link>
      <description>&lt;P&gt;it did not work. can you please be more specific on what I should do here?&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 20:24:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463148#M70451</guid>
      <dc:creator>tampham92</dc:creator>
      <dc:date>2018-05-17T20:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: empty list stored in a macro code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463154#M70452</link>
      <description>&lt;P&gt;If the query returns empty result then no macro will be created. Then use %symexist to check whether you macro exists. It return 1 if macro exists and 0 if not.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;if temp in (&amp;amp;Merill.) and %symexist(Merill)=1 then prod = "Merill"&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 20:38:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463154#M70452</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-05-17T20:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: empty list stored in a macro code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463160#M70453</link>
      <description>&lt;P&gt;I did what you suggest and the log&amp;nbsp;still gave me errors&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;25 GOPTIONS ACCESSIBLE;&lt;BR /&gt;26 DATA TEST;&lt;BR /&gt;27 SET HAVE;&lt;BR /&gt;&lt;BR /&gt;29 format QRMSA $30.;&lt;BR /&gt;&lt;BR /&gt;37 TEMP = input(AccountTypeCode, best3.);&lt;BR /&gt;38 format TEMP z3.;&lt;BR /&gt;&lt;BR /&gt;42 if temp in&lt;BR /&gt;42 ! (&amp;amp;Merill.) and %symexist(&amp;amp;Merill.) = 1 then QRMSA = "Merill";&lt;BR /&gt;_&lt;BR /&gt;22&lt;BR /&gt;WARNING: Apparent symbolic reference MERILL not resolved.&lt;BR /&gt;WARNING: Apparent symbolic reference MERILL not resolved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: Macro variable name &amp;amp;MERILL. must start with a letter or underscore.&lt;BR /&gt;42 &amp;amp;Merill.) and %symexist(&amp;amp;Merill.) = 1 then QRMSA = "Merill";&lt;BR /&gt;_&lt;BR /&gt;200&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: a quoted string, a numeric constant, a datetime constant,&lt;BR /&gt;a missing value, iterator, (.&lt;/P&gt;&lt;P&gt;ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 21:03:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463160#M70453</guid>
      <dc:creator>tampham92</dc:creator>
      <dc:date>2018-05-17T21:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: empty list stored in a macro code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463166#M70455</link>
      <description>&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;if %symexist(Merill) =1 then do;
			if  temp in (&amp;amp;Merill.) then QRMSA = "Merill";
			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;NOTE: Macro variable will not be created from an empty result table and previous macro values still exist.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 21:16:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463166#M70455</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-05-17T21:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: empty list stored in a macro code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463172#M70456</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; While all of these suggestions are good, my idea is to go further back in the debugging process. I assume that this step is a PROC SQL step?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select distinct AccountTypeCode1 into :Merrill separated by ','
from ACCOUNT_CODE_MASTER
where GLNumber1 = '208143' AND TaxPayerIDRAFT = '135674085'
;
quit;
  
%put what is in the Merrill macro variable &amp;amp;=Merrill;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; I suggest that BEFORE you use &amp;amp;Merrill anyplace you do some simple debugging AFTER the PROC SQL step. For example, use a %PUT to make sure that &amp;amp;Merrill has the AccountTypeCode1 that you expect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Or, try a proc print of Account_Code_Master and test your WHERE statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=ACCOUNT_CODE_MASTER;
var AccountTypeCode1 GLNumber1 TaxPayerIDRAFT;
where GLNumber1 = '208143' AND TaxPayerIDRAFT = '135674085'
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or use a PROC FREQ to see whether the variable values you've got in the WHERE are even present in Account_Code_Master:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=ACCOUNT_CODE_MASTER;
  tables GLNumber1 TaxPayerIDRAFT;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or even something simple like using a PROC CONTENTS to be sure that the syntax of your WHERE is correct (in other words that both variables are character):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
proc contents data=ACCOUNT_CODE_MASTER;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Because if GLNumber1 and TaxPayerIDRAFT are actually numeric variables and not character variables, then the syntax of your WHERE is incorrect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You did not say whether you had done these basic debugging steps first. That's where I would start. Perhaps you've done these things and you know that both variables are character and exist in the Account_Code_Master data. However, it never hurts to double check these things.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 21:36:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463172#M70456</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-05-17T21:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: empty list stored in a macro code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463192#M70457</link>
      <description>&lt;P&gt;Note that if your proc sql code to generate the macro list actually looks like this&lt;/P&gt;
&lt;PRE&gt;proc sql noprint;
   select distinct AccountTypeCode1 into :Merrill separated by ','
   from ACCOUNT_CODE_MASTER
   where GLNumber1 = '208143' AND TaxPayerIDRAFT = '135674085'
   ;
quit;&lt;/PRE&gt;
&lt;P&gt;An automatic macro variable SQLOBS was set with how many items&amp;nbsp;were returned.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would save it to specific macro variable as it may get reset before you need it with something like:&lt;/P&gt;
&lt;P&gt;%let MerrillCount = &amp;amp;sqlobs;&lt;/P&gt;
&lt;P&gt;Then in your data step you could actually test and use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%if &amp;amp;Merrillcount &amp;gt; 0 %then %do;&lt;/P&gt;
&lt;P&gt;&amp;lt;the code dependent on having some values in the Merril variable&amp;gt;&lt;/P&gt;
&lt;P&gt;%end;&lt;/P&gt;
&lt;P&gt;%else %do;&lt;/P&gt;
&lt;P&gt;&amp;lt;the code you might like to see if the macro variable is empty&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;maybe something like: If _n_=1 the put WARNING: No variables in macro variable Merrill. ;&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%end;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 22:47:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463192#M70457</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-05-17T22:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: empty list stored in a macro code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463315#M70464</link>
      <description>&lt;P&gt;it still gave me error&amp;nbsp;at this step&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="error.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20606i2EA279159BADAF5A/image-size/large?v=v2&amp;amp;px=999" role="button" title="error.PNG" alt="error.PNG" /&gt;&lt;/span&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;P&gt;Is there I can turn an empty macro in a "."&lt;/P&gt;</description>
      <pubDate>Fri, 18 May 2018 13:21:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/empty-list-stored-in-a-macro-code/m-p/463315#M70464</guid>
      <dc:creator>tampham92</dc:creator>
      <dc:date>2018-05-18T13:21:41Z</dc:date>
    </item>
  </channel>
</rss>

