<?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: using macro to create multiple data sets in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635533#M188716</link>
    <description>&lt;P&gt;Will it work well by your opinion?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Asia Europe All;
   set SASHELP.CARS;
   If origin='Asia' then output Asia;
   If origin=’Europe’ then output Europe;
   IF origin=origin  then output All; 
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 28 Mar 2020 16:34:41 GMT</pubDate>
    <dc:creator>Ronein</dc:creator>
    <dc:date>2020-03-28T16:34:41Z</dc:date>
    <item>
      <title>using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635521#M188705</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I want to use macro in order to create multiple data sets.&lt;/P&gt;
&lt;P&gt;1st data set including observations with origin='Asia'&lt;/P&gt;
&lt;P&gt;2nd data set including observations with origin='Europe'&lt;/P&gt;
&lt;P&gt;3rd data set including observations with any value of origin .&lt;/P&gt;
&lt;P&gt;What is the way to update the code in order that the 3rd data set will be created?&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;
&lt;P&gt;Koe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%Macro RRR(value);
Data  tbl_&amp;amp;Value. ;
SET  SASHELP.CARS(where=(origin='&amp;amp;Value."));
Run;
%Mend RRR:
%RRR(value='Asia');
%RRR(value='Europe');
%RRR(value='All');/*I&amp;nbsp;know&amp;nbsp;it&amp;nbsp;is&amp;nbsp;not&amp;nbsp;good&amp;nbsp;code&amp;nbsp;and&amp;nbsp;my&amp;nbsp;question&amp;nbsp;is&amp;nbsp;how&amp;nbsp;should&amp;nbsp;it&amp;nbsp;be&amp;nbsp;written*/&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2020 15:49:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635521#M188705</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2020-03-28T15:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635523#M188707</link>
      <description>&lt;P&gt;This has been covered in many thread, how to split SAS data sets. Of course, there's no real benefit to doing this, any future analysis to do with your data can be done via BY statements and/or WHERE statements.In addition, the future analysis of the split data sets will require more coding than using one big data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the easiest way to write a macro to create multiple data sets is to not split the data sets, which requires no code whatsoever.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2020 15:59:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635523#M188707</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-03-28T15:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635527#M188710</link>
      <description>&lt;P&gt;First of all, make your code run without any macro coding. Right now, your code won't work in any case.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Rule #1 for macro development: start with working Base SAS code.&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/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I want to use macro in order to create multiple data sets.&lt;/P&gt;
&lt;P&gt;1st data set including observations with origin='Asia'&lt;/P&gt;
&lt;P&gt;2nd data set including observations with origin='Europe'&lt;/P&gt;
&lt;P&gt;3rd data set including observations with any value of origin .&lt;/P&gt;
&lt;P&gt;What is the way to update the code in order that the 3rd data set will be created?&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;
&lt;P&gt;Koe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%Macro RRR(value);
Data  tbl_&amp;amp;Value. ;
SET  SASHELP.CARS(where=(origin='&amp;amp;Value."));
Run;
%Mend RRR:
%RRR(value='Asia');
%RRR(value='Europe');
%RRR(value='All');/*I&amp;nbsp;know&amp;nbsp;it&amp;nbsp;is&amp;nbsp;not&amp;nbsp;good&amp;nbsp;code&amp;nbsp;and&amp;nbsp;my&amp;nbsp;question&amp;nbsp;is&amp;nbsp;how&amp;nbsp;should&amp;nbsp;it&amp;nbsp;be&amp;nbsp;written*/&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2020 16:10:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635527#M188710</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-03-28T16:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635528#M188711</link>
      <description>&lt;P&gt;How should the last statement be written?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Asia Europe All;
   set SASHELP.CARS;
   If origin='Asia' then output Asia;
   If origin=’Europe’ then output Europe;
   IF origin = any value then output All;/*How should be written???*/
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 28 Mar 2020 16:12:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635528#M188711</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2020-03-28T16:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635529#M188712</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;How should the last statement be written?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Asia Europe All;
   set SASHELP.CARS;
   If origin='Asia' then output Asia;
   If origin=’Europe’ then output Europe;
   IF origin = any value then output All;/*How should be written???*/
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Just omit the condition and make the output to all unconditional.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2020 16:14:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635529#M188712</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-03-28T16:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635530#M188713</link>
      <description>&lt;P&gt;You seem confused by quotes and macro variables.&amp;nbsp; Your current macro cannot work with the calls you show (even if we ignore the special case).&amp;nbsp; Your macro wants VALUE to not have quotes in it so you can use it as part of a dataset name.&amp;nbsp; But then you call it with quotes in it.&amp;nbsp; So you are generating this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data  tbl_'Asia' ;
SET  SASHELP.CARS(where=(origin="'Asia'"));
Run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Which will not work in two way. First you cannot have quotes in the dataset name.&amp;nbsp; And second I doubt that ORIGIN has an values with quotes in them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It would be easiest to write the macro in a way that it generates all of the output in macro call.&amp;nbsp; In fact this will also allow you to generate all of the outputs in one data step.&lt;/P&gt;
&lt;P&gt;Here is an example assuming the values can actually be used as part of the dataset name (like in your example) which is probably NOT a valid assumption for most cases.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro RRR(value_list);
%local nitems index value;
%let nitems = %sysfunc(countw(&amp;amp;value_list),%str( ));
data
%do index=1 %to &amp;amp;nitems;
   %let value=%scan(&amp;amp;value_list,&amp;amp;index,%str( ));
   tbl_&amp;amp;value.
%end;
  tbl_other 
;
  SET  SASHELP.CARS ;
  select (origin);
%do index=1 %to &amp;amp;nitems;
   %let value=%scan(&amp;amp;value_list,&amp;amp;index,%str( ));
   when ("&amp;amp;value") output tbl_&amp;amp;value ;
%end;
   otherwise output tbl_other ;
  end;
run;
%mend RRR:
%rrr(Asia Europe)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2020 16:16:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635530#M188713</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-03-28T16:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635531#M188714</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%Macro RRR(value);
Data  tbl_&amp;amp;Value. ;
SET  SASHELP.CARS(where=(origin=%sysfunc(ifc(&amp;amp;value=All,origin,"&amp;amp;Value."))));
Run;
%Mend RRR;
%RRR(value=Asia);
%RRR(value=Europe);
%RRR(value=All);/*I know it is not good code and my question is how should it be written*/&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;LOG:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;60   %Macro RRR(value);
61   Data  tbl_&amp;amp;Value. ;
62   SET  SASHELP.CARS(where=(origin=%sysfunc(ifc(&amp;amp;value=All,origin,"&amp;amp;Value."))));
63   Run;
64   %Mend RRR;
65   %RRR(value=Asia);

NOTE: There were 158 observations read from the data set SASHELP.CARS.
      WHERE origin='Asia';
NOTE: The data set WORK.TBL_ASIA has 158 observations and 15 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds


66   %RRR(value=Europe);

NOTE: There were 123 observations read from the data set SASHELP.CARS.
      WHERE origin='Europe';
NOTE: The data set WORK.TBL_EUROPE has 123 observations and 15 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds


67   %RRR(value=All);

NOTE: There were 428 observations read from the data set SASHELP.CARS.
      WHERE 1 /* an obviously TRUE WHERE clause */ ;
NOTE: The data set WORK.TBL_ALL has 428 observations and 15 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 28 Mar 2020 16:23:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635531#M188714</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-03-28T16:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635532#M188715</link>
      <description>&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;The statement :&lt;/P&gt;
&lt;PRE class="language-sas"&gt;&lt;CODE&gt;otherwise output tbl_other ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;will create dataset with&amp;nbsp; origin value different than "Asia" or with all values of origin var??&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2020 16:24:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635532#M188715</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2020-03-28T16:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635533#M188716</link>
      <description>&lt;P&gt;Will it work well by your opinion?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Asia Europe All;
   set SASHELP.CARS;
   If origin='Asia' then output Asia;
   If origin=’Europe’ then output Europe;
   IF origin=origin  then output All; 
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 28 Mar 2020 16:34:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635533#M188716</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2020-03-28T16:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635534#M188717</link>
      <description>&lt;P&gt;One question please.&lt;/P&gt;
&lt;P&gt;Why should you use&amp;nbsp;&lt;CODE class=" language-sas"&gt;%sysfunc function&amp;nbsp;in&amp;nbsp;this&amp;nbsp;case?&lt;/CODE&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%Macro RRR(value);
Data  tbl_&amp;amp;Value. ;
SET SASHELP.CARS(where=(origin=%sysfunc(ifc(&amp;amp;value=All,origin,"&amp;amp;Value."))));
Run;
%Mend RRR;
%RRR(value=Asia);
%RRR(value=Europe);
%RRR(value=All);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2020 16:47:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635534#M188717</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2020-03-28T16:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635535#M188718</link>
      <description>&lt;P&gt;%sysfunc was used there to invoke SAS functions, in your case IFC to execute as a compile time operation for the macro processor. Otherwise SAS functions in general would function only at execution time in a Data step/Proc SQL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The logic here uses a simple conditional generation of SAS code using %sysfunc(IFC................)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2020 17:06:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635535#M188718</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-03-28T17:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635538#M188719</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Why should you use&amp;nbsp;&lt;CODE class=" language-sas"&gt;%sysfunc function&amp;nbsp;in&amp;nbsp;this&amp;nbsp;case?&lt;/CODE&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You can write the WHERE condition without &lt;FONT face="courier new,courier"&gt;%sysfunc&lt;/FONT&gt; as well (note the additional quotes):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;origin=ifc("&amp;amp;Value."="All",origin,"&amp;amp;Value.")&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or shorter:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;origin="&amp;amp;value" | "&amp;amp;value"="All"&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 28 Mar 2020 17:34:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635538#M188719</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2020-03-28T17:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create multiple data sets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635541#M188720</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;The statement :&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;otherwise output tbl_other ;&lt;/LI-CODE&gt;
&lt;P&gt;will create dataset with&amp;nbsp; origin value different than "Asia" or with all values of origin var??&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;No.&amp;nbsp; If you want make a subset that is just a copy of the original then make the output statement unconditional so that all observations are written.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your original question is how to make macro parameter that is sometimes used to specify values to select and sometimes means select all of the values then you have a few ways.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could use the &lt;STRONG&gt;special value method&lt;/STRONG&gt; that most of the answers on this thread are using.&amp;nbsp; When the parameter value has a special value then the macro does something different.&amp;nbsp; You could do that with macro logic that tests for the special value.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%if "&amp;amp;value" ne "All" %then %do;
  where origin = "&amp;amp;value";
%end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or SAS logic that tests for the special value.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;where origin="&amp;amp;value" or "&amp;amp;value"="All";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You could add a &lt;STRONG&gt;separate parameter&lt;/STRONG&gt; that tells the macro whether to generate the WHERE statement or not.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro rrr(value,subset=1);
data tbl_&amp;amp;value;
  set sashelp.cars;
%if &amp;amp;subset=1 %then %do;
  where origin="&amp;amp;value";
%end;
run;
%mend rrr;
%rrr(Asia);
%rrr(All,subset=0);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or you could let the caller supply the logic instead.&amp;nbsp; Instead of asking for a value ask for the condition.&amp;nbsp; In that case you should definitely separate the name of the dataset to generate from the condition used to generate it.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro rrr(name,where);
data tbl_&amp;amp;name;
  set sashelp.cars;
  where &amp;amp;where;
run;
%mend rrr;
%rrr(asia,orgin='Asia');
%rrr(all,1=1);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2020 18:13:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-multiple-data-sets/m-p/635541#M188720</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-03-28T18:13:19Z</dc:date>
    </item>
  </channel>
</rss>

