<?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 macro variables from file names in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705115#M216227</link>
    <description>&lt;P&gt;You can reference a macro variable's value by writing the name of the macro variable prefixed with the &amp;amp; character.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is it you are actually trying to do?&amp;nbsp; Perhaps the macro variables are not even required to do what you want.&lt;/P&gt;</description>
    <pubDate>Thu, 10 Dec 2020 16:35:42 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2020-12-10T16:35:42Z</dc:date>
    <item>
      <title>Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705042#M216192</link>
      <description>&lt;P&gt;I've the below list of files in one folder. Now I want to create macro variables based on the last&amp;nbsp; four digits. of each file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;INS_GT_1_1000.csv&lt;BR /&gt;INS_GT_1_1001.csv&lt;BR /&gt;INS_GT_1_1002.csv&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will define the folder name in macro variable as below. Now I want to scan this directory and get the last four digits of each file and store it&amp;nbsp;in macro variables. For each file,&amp;nbsp;I need to create a macro variable which has the value of four digits from the file name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;%let dir=/var/data/Server/&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Excepted Results:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First macro variable (e.g. ID1)&amp;nbsp;should have value as 1000, Second macro variable (e.g. ID2) &amp;nbsp;should have value as 1001 and Third macro variable (e.g. ID3)&amp;nbsp;should have value as 1002&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 13:47:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705042#M216192</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-12-10T13:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705050#M216198</link>
      <description>&lt;P&gt;Would this include CSV files only?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And what if a file does not end with a digit?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 13:59:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705050#M216198</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2020-12-10T13:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705058#M216199</link>
      <description>&lt;P&gt;I suppose this post is a continuation or an alternative way to solve your issue posted in&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Conditionally-move-the-files-based-on-macro-variable/m-p/705017" target="_self"&gt;https://communities.sas.com/t5/SAS-Programming/Conditionally-move-the-files-based-on-macro-variable/m-p/705017&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think this alternative will be easier or shorter to do the desired work.&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;</description>
      <pubDate>Thu, 10 Dec 2020 14:13:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705058#M216199</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-12-10T14:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705061#M216200</link>
      <description>Only CSV files will be placed in the folder and it will have digits.&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Dec 2020 14:15:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705061#M216200</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-12-10T14:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705063#M216201</link>
      <description>&lt;P&gt;Only CSV files will be placed in the Folder and it will have Digits.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 14:16:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705063#M216201</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-12-10T14:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705064#M216202</link>
      <description>&lt;P&gt;Use the file functions to retrieve the filenames, then some string functions to extract the digits:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let dir=/var/data/Server/;

data files;
fref = "DIR";
if filename(fref,"&amp;amp;dir.") = 0
then do;
  did = dopen(fref);
  if did ne 0
  then do;
    do i = 1 to dnum(did);
      name = dread(did,i);
      if upcase(scan(name,-1,".")) = "CSV" then output;
    end;
    did = dclose(did);
  end;
  rc = filename(fref);
end;
keep name;
run;

data _null_;
set files;
digits = substr(name,length(name)-7,4);
call symputx(cats("id",_n_),digits);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Dec 2020 14:20:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705064#M216202</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-10T14:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705078#M216209</link>
      <description>Thank you. May I know why you have used the variable 'fref' in your&lt;BR /&gt;program?&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Dec 2020 14:52:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705078#M216209</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-12-10T14:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705082#M216212</link>
      <description>&lt;P&gt;It's a matter of habit; when FILENAME is used in a macro, it HAS to be a macro &lt;EM&gt;variable&lt;/EM&gt; and not a string. So I also do the same in a data step.&lt;/P&gt;
&lt;P&gt;By using an empty variable of length 8, SAS will assign a name automatically.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 15:01:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705082#M216212</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-10T15:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705113#M216226</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I have one more question&amp;nbsp;for you. I want to use the created macro variables (ID1 - IDn) in other macro under %index function.&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV dir="auto"&gt;Like this,&lt;/DIV&gt;
&lt;DIV dir="auto"&gt;
&lt;PRE&gt;%index(file_name,‹macrovariable ID1 - IDn&amp;gt;) &amp;gt; 0 then %do
.
.
%end;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV dir="auto"&gt;May I know how should I use the created macro variables under %index function?&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 10 Dec 2020 16:25:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705113#M216226</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-12-10T16:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705115#M216227</link>
      <description>&lt;P&gt;You can reference a macro variable's value by writing the name of the macro variable prefixed with the &amp;amp; character.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is it you are actually trying to do?&amp;nbsp; Perhaps the macro variables are not even required to do what you want.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 16:35:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705115#M216227</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-12-10T16:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705116#M216228</link>
      <description>&lt;P&gt;Appreciate if you could help me with example for this, &lt;EM&gt;'You can reference a macro variable's value by writing the name of the macro variable prefixed with the &amp;amp; character.'&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 16:42:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705116#M216228</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-12-10T16:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705118#M216229</link>
      <description>&lt;P&gt;So if you create a macro variable named FILE and want to use the value of FILE in your program you type &amp;amp;FILE.&amp;nbsp; You can add a period at the end of the name to be explicit about where the name ends.&lt;/P&gt;
&lt;P&gt;Here is a simple example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let name=filename1.xls ;
%let number=1 ;
%if %index(&amp;amp;name,&amp;amp;number) %then %do;
  %put &amp;amp;number is contained in &amp;amp;name.. ;
%end;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Dec 2020 16:51:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705118#M216229</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-12-10T16:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705121#M216231</link>
      <description>&lt;P&gt;So you do not need a &lt;EM&gt;list&lt;/EM&gt; of macro variables, but&amp;nbsp;&lt;STRONG&gt;a&lt;/STRONG&gt; macro variable with &lt;STRONG&gt;a&lt;/STRONG&gt; value, which you want to search for in whatever is represented by file_name here.&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/292396"&gt;@David_Billa&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;I have one more question&amp;nbsp;for you. I want to use the created macro variables (ID1 - IDn) in other macro under %index function.&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV dir="auto"&gt;Like this,&lt;/DIV&gt;
&lt;DIV dir="auto"&gt;
&lt;PRE&gt;%index(file_name,‹macrovariable ID1 - IDn&amp;gt;) &amp;gt; 0 then %do
.
.
%end;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV dir="auto"&gt;May I know how should I use the created macro variables under %index function?&amp;nbsp;&lt;/DIV&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 17:08:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705121#M216231</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-10T17:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705123#M216232</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need a&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;need a&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;list&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;of macro variables, but&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;a&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;macro variable with&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;a&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;value and &lt;STRONG&gt;b&lt;/STRONG&gt;&amp;nbsp;macro variable with &lt;STRONG&gt;b&lt;/STRONG&gt; value and so on.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;So how to pass these macro variables as arguments to %index function?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 17:16:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705123#M216232</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-12-10T17:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705126#M216234</link>
      <description>&lt;P&gt;You start with a bunch of year/month values, and you want to compare those with another value; please describe what you want to achieve here, the big picture, so to say.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 17:21:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705126#M216234</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-10T17:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705140#M216242</link>
      <description>We are near to the answer I believe. After we create the list macro&lt;BR /&gt;variables from your initial program, how to use those macro variables&lt;BR /&gt;dynamically as arguments in %index function?&lt;BR /&gt;&lt;BR /&gt;For example, I have the files in one  folder as I mentioned in my post, I&lt;BR /&gt;want to check if the file has a string which matches with our values of our&lt;BR /&gt;macro variables. If it matches then move the files to another folder.&lt;BR /&gt;&lt;BR /&gt;Hope it helps.&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Dec 2020 17:39:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705140#M216242</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-12-10T17:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705143#M216245</link>
      <description>&lt;P&gt;Create two datasets: one with the filenames, the other with the periods you're looking for. Join them, and use the result to do the file copy. No macro variables and no macro code needed at all.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 17:43:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705143#M216245</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-10T17:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705150#M216249</link>
      <description>I want to do it in a macro as I want to update the existing program which&lt;BR /&gt;has macros. I was not allowed to use other than macros.&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Dec 2020 17:53:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705150#M216249</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-12-10T17:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705158#M216254</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292396"&gt;@David_Billa&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need a&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;need a&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;list&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;of macro variables, but&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;a&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;macro variable with&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;a&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;value and &lt;STRONG&gt;b&lt;/STRONG&gt;&amp;nbsp;macro variable with &lt;STRONG&gt;b&lt;/STRONG&gt; value and so on.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;So how to pass these macro variables as arguments to %index function?&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The way you phrase this feels to me like you may have had an idea and unwilling to consider other approaches, even if easier or more maintainable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any thing with a "list of macro variables" can depend a lot on what the list actually looks like. If a simple space delimited list of single strings then you can pull each individual value from from the list with something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;%macro dummy(list = );
%do i = 1 %to %sysfunc(countw(&amp;amp;list.));
   %let parm = %scan(&amp;amp;list.,&amp;amp;i.);
   %put Parm number &amp;amp;i. is &amp;amp;parm.;
%end;
%mend;

%dummy(list= first second other garbage);&lt;/PRE&gt;
&lt;P&gt;So you could stick Parm, or whatever you want to call it in any function, data set or external filename, title text ...&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 18:24:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705158#M216254</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-12-10T18:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Create macro variables from file names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705168#M216260</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292396"&gt;@David_Billa&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I want to do it in a macro as I want to update the existing program which&lt;BR /&gt;has macros. I was not allowed to use other than macros.&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Another instance of a boss with the "I don't care that a saw is the best tool, use a chisel because I say so!" attitude perhaps?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 18:35:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-macro-variables-from-file-names/m-p/705168#M216260</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-12-10T18:35:45Z</dc:date>
    </item>
  </channel>
</rss>

