<?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: Pass variable into Macro parameters in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839530#M331939</link>
    <description>&lt;P&gt;You could try some trick to generate a %MACRO statement that includes a variable list of parameter names.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  list='a,b,c';
  call symputx('x',cats('''%macro mymac(',list,');'''));
run;
%put &amp;amp;=x;
%sysfunc(dequote(&amp;amp;x))
%put _local_;
%mend;
%mymac;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But that is really convoluted and prone to total collapse with even a minor mistake.&lt;/P&gt;</description>
    <pubDate>Wed, 19 Oct 2022 21:58:48 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2022-10-19T21:58:48Z</dc:date>
    <item>
      <title>Pass variable into Macro parameters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/838771#M331641</link>
      <description>Can someone please help how to pass values from outside macro defined variables into Macro parameter. Below is one example.&lt;BR /&gt;&lt;BR /&gt;%let var=abcd;&lt;BR /&gt;%macro macro1(&amp;amp;var);&lt;BR /&gt;Statement;&lt;BR /&gt;%mend macro1;&lt;BR /&gt;&lt;BR /&gt;Looks like it does not resolve the macro variable var.&lt;BR /&gt;</description>
      <pubDate>Sat, 15 Oct 2022 03:38:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/838771#M331641</guid>
      <dc:creator>kumarsandip975</dc:creator>
      <dc:date>2022-10-15T03:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Pass variable into Macro parameters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/838772#M331642</link>
      <description>&lt;P&gt;You didn’t ask it to do anything….&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let var=abcd;
%macro macro1(myMacroVar=&amp;amp;var);
%put &amp;amp;myMacroVar;
%mend macro1;

*run the macro;
%macro1;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/93854"&gt;@kumarsandip975&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Can someone please help how to pass values from outside macro defined variables into Macro parameter. Below is one example.&lt;BR /&gt;&lt;BR /&gt;%let var=abcd;&lt;BR /&gt;%macro macro1(&amp;amp;var);&lt;BR /&gt;Statement;&lt;BR /&gt;%mend macro1;&lt;BR /&gt;&lt;BR /&gt;Looks like it does not resolve the macro variable var.&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Oct 2022 03:53:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/838772#M331642</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-10-15T03:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Pass variable into Macro parameters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/838775#M331645</link>
      <description>&lt;P&gt;What you have between %macro... and %mend is the macro definition. All it does when you run it is to compile the macro.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have to call the macro if you want it to execute.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Macro definition:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro mymac1(myMacroVar);
  %put &amp;amp;myMacroVar;
%mend;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Calling the macro:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let var=abcd;

%mymac1(&amp;amp;var);
%mymac1(some other value just as a hard coded string);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And here how to call the macro once per iteration of a data step:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  set sashelp.class;
  call execute( cats('%mymac1(',name,');') );
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 15 Oct 2022 04:50:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/838775#M331645</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2022-10-15T04:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Pass variable into Macro parameters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839349#M331890</link>
      <description>&lt;P&gt;Here is the requirement,&amp;nbsp;&lt;/P&gt;&lt;P&gt;If &lt;STRONG&gt;number_of_folder&lt;/STRONG&gt;s=5 then we should pass like (&lt;STRONG&gt;folder1,folder2,folder3,folder4,folder5) &lt;/STRONG&gt;and call macro with hardcoded values , couls be anything (SAS, ABCD, XYZ, KJD, SAS1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%macro macro2(&lt;STRONG&gt;folder1,folder2,folder3,folder4,folder5&lt;/STRONG&gt;);&lt;BR /&gt;%do i=1 %to &amp;amp;&lt;STRONG&gt;number_of_folders&lt;/STRONG&gt;;&lt;BR /&gt;data folderItems1(rename=(name=name&amp;amp;i));&lt;BR /&gt;set folderItems1;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;BR /&gt;select id into: folderId from folderItems1&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;where name&amp;amp;i="&lt;STRONG&gt;&amp;amp;folder&amp;amp;i&lt;/STRONG&gt;";&lt;/SPAN&gt;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;filename resp TEMP;&lt;BR /&gt;proc http url="&lt;A title="https://graph.microsoft.com/v1.0/me/drives/&amp;amp;driveid./items/&amp;amp;folderid./children%22" href="https://graph.microsoft.com/v1.0/me/drives/&amp;amp;driveId./items/&amp;amp;folderId./children%22" target="_blank" rel="noreferrer noopener"&gt;https://graph.microsoft.com/v1.0/me/drives/&amp;amp;driveId./items/&amp;amp;folderId./children"&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;oauth_bearer="&amp;amp;access_token"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;out = resp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname jresp json fileref=resp;&lt;BR /&gt;data folderItems1;&lt;BR /&gt;set jresp.value;&lt;BR /&gt;run;&lt;BR /&gt;%end;&lt;BR /&gt;%mend macro2(SAS, ABCD, XYZ, KJD, SAS1);&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 11:44:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839349#M331890</guid>
      <dc:creator>kumarsandip975</dc:creator>
      <dc:date>2022-10-19T11:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Pass variable into Macro parameters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839356#M331892</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/93854"&gt;@kumarsandip975&lt;/a&gt;&amp;nbsp;Below should show you how this can work.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro mymac1(sentence);
  %local n_words;
  %let n_words=%sysfunc(countw(&amp;amp;sentence,%str( )));
  %do i=1 %to &amp;amp;n_words;
    %let word=%scan(&amp;amp;sentence,&amp;amp;i,%str( ));
    %put The word is: &amp;amp;word;
  %end;
%mend;

%mymac1(folder1 folder2 folder3)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1666181392268.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/76302i3C74DE059E0D459D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Patrick_0-1666181392268.png" alt="Patrick_0-1666181392268.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The alternative approach would be to use a driver table. I prefer this over parsing a string as it keeps the macro code simpler and keeps the macro call more data driven.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data driver;
  input word $;
  datalines;
folder1
folder2
folder3
;
%macro mymac1(word);
  %put The word is: &amp;amp;word;
%mend;

data _null_;
  set driver;
  call execute( cats('%mymac1(',word,')') );
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1666182007129.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/76303i3E8340F7577F2444/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Patrick_0-1666182007129.png" alt="Patrick_0-1666182007129.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And what every experienced SAS developer does: FIRST develop your code for a single case without any macro code involved. Once this code fully works identify the locations in the code that need to by dynamic. That will then guide you how many macro parameters you really need. Taking such an approach makes it also much easier to debug your code as when it works on the single case level but not once "macrotized" then you know where to investigate. If you do everything together at once then you have first to figure out if your Base SAS logic is wrong or just something with the macro that generates this Base SAS code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 12:24:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839356#M331892</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2022-10-19T12:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Pass variable into Macro parameters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839382#M331900</link>
      <description>&lt;P&gt;The concept of passing a list to a macro is best done by using one parameter.&amp;nbsp; Just use a delimiter to sperate the values.&amp;nbsp; Do NOT use comma as the delimiter because that is already being used by the macro processor.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Normally you would use a space, just like normal SAS code uses spaces between words/tokens.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or if a space could be part of one of the values use something else.&amp;nbsp; For a list of directories you could use&amp;nbsp; | since that cannot be used in a directory name.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro mymacro(folders);
%local i folder ;
%do i=1 %to %sysfunc(countw(&amp;amp;folders,|));
  %let folder=%scan(&amp;amp;folders,&amp;amp;i,|);
  .... code that uses &amp;amp;folder ....
%end;
%mend mymacro;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note : The code your macro is trying to create looks incorrect (or at least overly convoluted).&amp;nbsp; For example it kind of looks like you are trying to create or at least reference a series of macro variable, FOLDER1, FOLDER2 etc.&amp;nbsp; But there does not really appear to be any need for so many macro variables.&amp;nbsp; You only are working with one of them at a time.&amp;nbsp; Plus the attempt to indirectly reference them is not valid.&amp;nbsp; &amp;amp;FOLDER&amp;amp;I cannot work.&amp;nbsp; That is referencing macro variables named I and FOLDER.&amp;nbsp; You probably wanted instead to reference I and one of the many FOLDERxx macro variables instead.&amp;nbsp; For that you need to delay resolving FOLDER until the suffix is added.&amp;nbsp; You would use &amp;amp;&amp;amp;FOLDER&amp;amp;I&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 13:44:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839382#M331900</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-10-19T13:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: Pass variable into Macro parameters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839501#M331927</link>
      <description>Sorry, this is confusion for me, and looks like I confused everyone as well. Let me explain once again with simple case. So, my question is, If there is anyway , if I can store ds1, ds2,ds3,ds4 in one variable[like, %let ds=ds1,ds2,ds3,ds4; ] and pass the same into "%macro mymac1(&amp;amp;ds);".&lt;BR /&gt;&lt;BR /&gt;below code works fine, when I hard code ds1,ds2,ds3,ds4 etc....&lt;BR /&gt;%let no_of_dataset=4;&lt;BR /&gt;%let diff_dataset=SASHELP.CARS,SASHELP.AIR,SASHELP.GAS,SASHELP.CLASS;&lt;BR /&gt;%macro mymac1(ds1,ds2,ds3,ds4);&lt;BR /&gt;%do i=1 %to &amp;amp;no_of_dataset;&lt;BR /&gt;proc print data=&amp;amp;&amp;amp;ds&amp;amp;i(obs=2);&lt;BR /&gt;%end;&lt;BR /&gt;%mend;&lt;BR /&gt;%mymac1(&amp;amp;diff_dataset);&lt;BR /&gt;&lt;BR /&gt;But, below code does not seems to be correct with error.&lt;BR /&gt;%let no_of_dataset=4;&lt;BR /&gt;%let diff_dataset=SASHELP.CARS,SASHELP.AIR,SASHELP.GAS,SASHELP.CLASS;&lt;BR /&gt;%let ds=ds1,ds2,ds3,ds4;&lt;BR /&gt;%macro mymac1(&amp;amp;ds);&lt;BR /&gt;%do i=1 %to &amp;amp;no_of_dataset;&lt;BR /&gt;proc print data=&amp;amp;&amp;amp;ds&amp;amp;i(obs=2);&lt;BR /&gt;%end;&lt;BR /&gt;%mend;&lt;BR /&gt;%mymac1(&amp;amp;diff_dataset);&lt;BR /&gt;&lt;BR /&gt;Error message:&lt;BR /&gt;73 %let no_of_dataset=4;&lt;BR /&gt;74 %let diff_dataset=SASHELP.CARS,SASHELP.AIR,SASHELP.GAS,SASHELP.CLASS;&lt;BR /&gt;75 %let ds=ds1,ds2,ds3,ds4;&lt;BR /&gt;76 %macro mymac1(&amp;amp;ds);&lt;BR /&gt;ERROR: Invalid macro parameter name &amp;amp;. It should be a valid SAS identifier no longer than 32 characters.&lt;BR /&gt;ERROR: A dummy macro will be compiled.&lt;BR /&gt;77 %do i=1 %to &amp;amp;no_of_dataset;;&lt;BR /&gt;78 proc print data=&amp;amp;&amp;amp;ds&amp;amp;i(obs&amp;amp;ds=2);&lt;BR /&gt;79 %end;&lt;BR /&gt;80 %mend;&lt;BR /&gt;81&lt;BR /&gt;82 %mymac1(&amp;amp;diff_dataset);</description>
      <pubDate>Wed, 19 Oct 2022 20:03:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839501#M331927</guid>
      <dc:creator>kumarsandip975</dc:creator>
      <dc:date>2022-10-19T20:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: Pass variable into Macro parameters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839510#M331930</link>
      <description>&lt;P&gt;&lt;STRONG&gt;You definitely cannot use the value of a macro variable to generate the list of parameters in the %MACRO statement. You have to actually list the parameter names in the source code.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So instead just use ONE parameter and pass in the list of values in that ONE parameter.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro mymac1(dslist);
%local i ds ;
%do i=1 %to %sysfunc(countw(&amp;amp;dslist));
  %let ds=%scan(&amp;amp;dslist,&amp;amp;i);
proc print data=&amp;amp;ds(obs=2);
run;
%end;
%mend;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But now commas in the list of values becomes a problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the macro variable DIFF_DATASET is the string&lt;/P&gt;
&lt;PRE&gt;SASHELP.CARS,SASHELP.AIR,SASHELP.GAS,SASHELP.CLASS&lt;/PRE&gt;
&lt;P&gt;And it is then referenced in this statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%mymac1(&amp;amp;diff_dataset);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Replacing the reference to DIFF_DATASET with its value you get this macro call&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%mymac1(SASHELP.CARS,SASHELP.AIR,SASHELP.GAS,SASHELP.CLASS);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Which the macro processor is going to see as trying to pass values for 4 different parameters because each comma means the start of the next position parameter value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is what I mean by saying the using COMMA as the delimiter in your list of values is going to make things HARD.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could use macro quoting.&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you call the macro:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%mymac1(%superq(diff_dataset));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or when you define the macro variable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let diff_dataset=%str(SASHELP.CARS,SASHELP.AIR,SASHELP.GAS,SASHELP.CLASS);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or you could use actual quotes or parentheses to protect the commas.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%mymac1("&amp;amp;diff_dataset");
%mymac1((&amp;amp;diff_dataset));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But then the body of the macro will need to remove them.&amp;nbsp; That is easy in the case of quotes by using the dequote() function.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let dslist=%sysfunc(dequote(&amp;amp;dslist));&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>Wed, 19 Oct 2022 20:33:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839510#M331930</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-10-19T20:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: Pass variable into Macro parameters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839530#M331939</link>
      <description>&lt;P&gt;You could try some trick to generate a %MACRO statement that includes a variable list of parameter names.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  list='a,b,c';
  call symputx('x',cats('''%macro mymac(',list,');'''));
run;
%put &amp;amp;=x;
%sysfunc(dequote(&amp;amp;x))
%put _local_;
%mend;
%mymac;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But that is really convoluted and prone to total collapse with even a minor mistake.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 21:58:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pass-variable-into-Macro-parameters/m-p/839530#M331939</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-10-19T21:58:48Z</dc:date>
    </item>
  </channel>
</rss>

