<?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: can we use do loop to delete global macro variables? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98607#M20794</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no macro equivalent of the data step ARRAY statement.&lt;/P&gt;&lt;P&gt;If you have a numbered series of macro variables that you want to delete then just use a %DO loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%do i=1 %to 60;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; %if %symexist(trt&amp;amp;i) %then %symdel trt&amp;amp;i ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;Why do you feel a need to delete the macro variables?&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Apr 2013 11:18:53 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2013-04-05T11:18:53Z</dc:date>
    <item>
      <title>can we use do loop to delete global macro variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98605#M20792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;%macro xy;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %array &amp;amp;trt(60) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %do i = 1 %to 60;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %symdel trt(i) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %end;&lt;/P&gt;&lt;P&gt;%mend xy;&lt;/P&gt;&lt;P&gt;%xy;macro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WARNING: Apparent invocation of macro ARRAY not resolved.&lt;/P&gt;&lt;P&gt;WARNING: Apparent symbolic reference TRT not resolved&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have created trt1 to trt60&amp;nbsp; macro variables , i want to delete them all at once . can anybody suggest me the way and what mistake i did&amp;nbsp; in this program.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2013 07:20:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98605#M20792</guid>
      <dc:creator>chaitanya</dc:creator>
      <dc:date>2013-04-05T07:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: can we use do loop to delete global macro variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98606#M20793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it quite simple by using %DO Loop...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro delete_var;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %do i = 1 %to 60;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %global trt&amp;amp;i.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %let trt&amp;amp;i = 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %symdel trt&amp;amp;i.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %end;&lt;/P&gt;&lt;P&gt;%mend;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%delete_var&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2013 08:29:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98606#M20793</guid>
      <dc:creator>UrvishShah</dc:creator>
      <dc:date>2013-04-05T08:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: can we use do loop to delete global macro variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98607#M20794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no macro equivalent of the data step ARRAY statement.&lt;/P&gt;&lt;P&gt;If you have a numbered series of macro variables that you want to delete then just use a %DO loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%do i=1 %to 60;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; %if %symexist(trt&amp;amp;i) %then %symdel trt&amp;amp;i ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;Why do you feel a need to delete the macro variables?&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2013 11:18:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98607#M20794</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-04-05T11:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: can we use do loop to delete global macro variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98608#M20795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think Chaitanya is trying to make his code more efficient by deleting global macro variables as they are not needed for further processing...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chaitanya -&amp;nbsp; if your aim is to make your programme more efficient then, rather than delete macro variables, you can assign the macro variables a NULL value like this %let trt1 = ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By this way, you can save the space that is needed to store global macro variables in global symbol table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Urvish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2013 11:31:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98608#M20795</guid>
      <dc:creator>UrvishShah</dc:creator>
      <dc:date>2013-04-05T11:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: can we use do loop to delete global macro variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98609#M20796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This doesn't require a macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%global&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; trt1 trt2 trt3;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; todelete;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; sashelp.vmacro;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;where&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; scope eq &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;'GLOBAL'&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; and name eq: &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;'TRT'&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; and offset eq &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;0&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;_null_&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; todelete;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;call&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; symdel(name);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2013 11:40:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98609#M20796</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-04-05T11:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: can we use do loop to delete global macro variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98610#M20797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Data_Null_:&lt;/P&gt;&lt;P&gt;a macro is not required, just a subroutine.&lt;/P&gt;&lt;P&gt;Save that solution in a utility file&lt;/P&gt;&lt;P&gt;and whenever you want to do housecleaning&lt;/P&gt;&lt;P&gt;just&lt;/P&gt;&lt;P&gt;%include SiteIncl(symdel_all_global);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here are some points for future reference:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* symdel works on global macro variables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* opinion: it is Very BAD programming practice to write a macro that removes mvars from the global symbol table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* macro array?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written three versions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sascommunity.org/wiki/Category:Macros_by_Ron_Fehd" title="http://www.sascommunity.org/wiki/Category:Macros_by_Ron_Fehd"&gt;http://www.sascommunity.org/wiki/Category:Macros_by_Ron_Fehd&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which I have deprecated in favor of either of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sascommunity.org/wiki/Macro_CallMacr" title="http://www.sascommunity.org/wiki/Macro_CallMacr"&gt;http://www.sascommunity.org/wiki/Macro_CallMacr&lt;/A&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sascommunity.org/wiki/Macro_CallText" title="http://www.sascommunity.org/wiki/Macro_CallText"&gt;http://www.sascommunity.org/wiki/Macro_CallText&lt;/A&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://www.sascommunity.org/wiki/Macro_Loops_with_Dates" title="http://www.sascommunity.org/wiki/Macro_Loops_with_Dates"&gt;http://www.sascommunity.org/wiki/Macro_Loops_with_Dates&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reference:&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://www.sascommunity.org/wiki/List_Processing_Basics_Creating_and_Using_Lists_of_Macro_Variables" title="http://www.sascommunity.org/wiki/List_Processing_Basics_Creating_and_Using_Lists_of_Macro_Variables"&gt;http://www.sascommunity.org/wiki/List_Processing_Basics_Creating_and_Using_Lists_of_Macro_Variables&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ron Fehd&amp;nbsp; deprecated(%array) maven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2013 12:23:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98610#M20797</guid>
      <dc:creator>Ron_MacroMaven</dc:creator>
      <dc:date>2013-04-05T12:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: can we use do loop to delete global macro variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98611#M20798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;%do loop is also deleting all the macro variables , is there any rationale in using subroutine?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2013 14:41:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98611#M20798</guid>
      <dc:creator>chaitanya</dc:creator>
      <dc:date>2013-04-05T14:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: can we use do loop to delete global macro variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98612#M20799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My reframe of your Q is:&lt;/P&gt;&lt;P&gt;I have to write a macro whose only purpose is to do one thing, once.&lt;/P&gt;&lt;P&gt;and my answer is:&lt;/P&gt;&lt;P&gt;Macros are all about repetition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, yes, your macro does have one of my two criteria for writing a macro&lt;/P&gt;&lt;P&gt;1. %do&lt;/P&gt;&lt;P&gt;2. %if&lt;/P&gt;&lt;P&gt;but saving and finding a reusable subroutine &lt;/P&gt;&lt;P&gt;is as much work as saving and finding a non-reusable macro&lt;/P&gt;&lt;P&gt;so my vote is for the reusable subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And,&lt;/P&gt;&lt;P&gt;why are you creating an array of global macro variables in the first place?&lt;/P&gt;&lt;P&gt;They can be %local within the macro that creates and uses them&lt;/P&gt;&lt;P&gt;and are discarded when the macro finishes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The context of your Q is &lt;/P&gt;&lt;P&gt;-- in my opinion --&lt;/P&gt;&lt;P&gt;not good programming practice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ron Fehd&amp;nbsp; better==less maven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2013 15:10:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98612#M20799</guid>
      <dc:creator>Ron_MacroMaven</dc:creator>
      <dc:date>2013-04-05T15:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: can we use do loop to delete global macro variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98613#M20800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;got your point..thanks for d clarification..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2013 16:00:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98613#M20800</guid>
      <dc:creator>chaitanya</dc:creator>
      <dc:date>2013-04-05T16:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: can we use do loop to delete global macro variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98614#M20801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a one.step solution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0605D&amp;amp;L=sas-l&amp;amp;P=R4163" title="http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0605D&amp;amp;L=sas-l&amp;amp;P=R4163"&gt;http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0605D&amp;amp;L=sas-l&amp;amp;P=R4163&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ron Fehd&amp;nbsp; SAS-L archives maven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2013 16:57:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98614#M20801</guid>
      <dc:creator>Ron_MacroMaven</dc:creator>
      <dc:date>2013-04-05T16:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: can we use do loop to delete global macro variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98615#M20802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you say so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seems more complex to create more macro variables just so you can say it is one step which its not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2013 17:08:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/can-we-use-do-loop-to-delete-global-macro-variables/m-p/98615#M20802</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-04-05T17:08:52Z</dc:date>
    </item>
  </channel>
</rss>

