<?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: Compare datasets with sound alike names in different directories in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759051#M239791</link>
    <description>&lt;P&gt;Thanks for this program. I have some few questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="language-sas"&gt;&lt;CODE&gt;libname lib1 "%sysfunc(pathname(work))\lib1";
libname lib2 "%sysfunc(pathname(work))\lib2";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;What is the above program doing? Creating two libraries under WORK?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the last SQL procedure meant to do? Place all datasets in LIB1 into ds1 and all datasets in LIB2 into a ds2? And this is performed for only datasets that exit in both libraries?&lt;/P&gt;
&lt;P&gt;I ask because I did not see a counter that loops through the datasets in the COMPARE procedure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Tue, 03 Aug 2021 15:32:50 GMT</pubDate>
    <dc:creator>SWEETSAS</dc:creator>
    <dc:date>2021-08-03T15:32:50Z</dc:date>
    <item>
      <title>Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/758612#M239562</link>
      <description>&lt;P&gt;I have two directories. mylibA and mylibB in which some datasets names are the same and some are close but not exactly (have v_ before the dataset name). The names of the dataset looks like following:&lt;/P&gt;
&lt;P&gt;------------------&lt;/P&gt;
&lt;P&gt;mylibA&lt;/P&gt;
&lt;P&gt;-----------------&lt;BR /&gt;want1&lt;BR /&gt;want2&lt;BR /&gt;want3&lt;BR /&gt;want4&lt;/P&gt;
&lt;P&gt;-------------------&lt;/P&gt;
&lt;P&gt;mylibB&lt;/P&gt;
&lt;P&gt;------------------&lt;BR /&gt;want1&lt;BR /&gt;v_want2&lt;BR /&gt;want3&lt;BR /&gt;v_want4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a way to use PROC COMPARE to loop through and automatically compare all these datasets both libraries: i.e, mylibA.want1 and mylibB.want1, mylibA.want2 and mylibB.v_want2, mylibA.want3 and mylibB.want3, mylibA.want4 and mylib.v_want4.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is, v_want2 and v_want4 should actually by want2 and want4, respectively.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Jul 2021 20:43:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/758612#M239562</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2021-07-31T20:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/758621#M239567</link>
      <description>&lt;P&gt;What do you really want to know from the comparison?&lt;/P&gt;
&lt;P&gt;What is the final result of your process? "That is, v_want2 and v_want4 should actually by want2 and want4, respectively." isn't very clear. Do you intend to Rename the data sets to standard version? If that is the case then you may be contemplating a lot of extra work if the pattern is actual V_ prefixing a name. Or do you have a bunch of different prefixes that vary in no regular pattern? (Hint: regular patterns you program for relatively easily).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can get the names of the data sets by selecting records from the view SASHELP.Vtable, or using Proc Sql Dictionary.tables. An example of getting all the table names for one library.&lt;/P&gt;
&lt;PRE&gt;Proc sql;
   create table Libone as
   select libname, memname 
   from dictionary.tables
   where libname='MYLIB1'
   ;
run;&lt;/PRE&gt;
&lt;P&gt;I'm not going to go any further with code as there a number of ways to interpret your request and some of them might require more thinking than I'm willing to do on a Saturday.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you have the text involved there are several functions to compare text variables such as SOUNDEX, COMPLEV and COMPGED&lt;/P&gt;</description>
      <pubDate>Sat, 31 Jul 2021 22:49:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/758621#M239567</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-07-31T22:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/758624#M239570</link>
      <description>&lt;P&gt;Thanks!@ballardw.&lt;/P&gt;
&lt;P&gt;The goal is to compare datasets in both directories.&lt;/P&gt;
&lt;P&gt;A good program should look like the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc compare&lt;/P&gt;
&lt;P&gt;base=MYLIB1.want1&lt;/P&gt;
&lt;P&gt;compare=MYLIB2.want1&lt;/P&gt;
&lt;P&gt;out=MYLIB3.want1&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc compare&lt;/P&gt;
&lt;P&gt;base=MYLIB1.want2&lt;/P&gt;
&lt;P&gt;compare=MYLIB2.v_want2&lt;/P&gt;
&lt;P&gt;out=MYLIB3.want2&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;etc&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the dataset were the same name in both libraries, this can be done with something like this:&lt;/P&gt;
&lt;P&gt;do i=1 to &amp;amp;n;&lt;/P&gt;
&lt;P&gt;proc compare&lt;/P&gt;
&lt;P&gt;base=MYLIB1.&amp;amp;ds&amp;amp;i&lt;/P&gt;
&lt;P&gt;compare=MYLIB2.&amp;amp;ds&amp;amp;i&lt;/P&gt;
&lt;P&gt;out=MYLIB3.&amp;amp;ds&amp;amp;i&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;end;&lt;/P&gt;
&lt;P&gt;where &amp;amp;ds and &amp;amp;n are macro variables from DATA&amp;nbsp; _NULL_&amp;nbsp; that reference the different datasets.&lt;/P&gt;
&lt;P&gt;But the challenge here is that for some datasets in the second directory, the dataset names begins with the prefix v_&amp;nbsp; (no other prefix) and some are the same name in both directories.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Jul 2021 23:19:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/758624#M239570</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2021-07-31T23:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/758627#M239572</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15889"&gt;@SWEETSAS&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks!@ballardw.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the dataset were the same name in both libraries, this can be done with something like this:&lt;/P&gt;
&lt;P&gt;do i=1 to &amp;amp;n;&lt;/P&gt;
&lt;P&gt;proc compare&lt;/P&gt;
&lt;P&gt;base=MYLIB1.&amp;amp;ds&amp;amp;i&lt;/P&gt;
&lt;P&gt;compare=MYLIB2.&amp;amp;ds&amp;amp;i&lt;/P&gt;
&lt;P&gt;out=MYLIB3.&amp;amp;ds&amp;amp;i&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;end;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You can't run a Procedure within a SAS datastep so your code would not work. You could though achieve what you want to do by having the Proc Compare in a macro and then use call execute() within a do loop.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the potential difference between DS names is only the V_ then it wouldn't be hard to create a list of the DS to be compared by querying dictionary.tables BUT: The V_... is often a naming convention for Views. Are you 100% sure these v_have1 "tables" are not just views of the have1 tables? If so a Proc Compare wouldn't make any sense for such cases.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here some sample code how this could look like. Amend as required for your actual use case.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options dlcreatedir;

libname lib1 "%sysfunc(pathname(work))\lib1";
libname lib2 "%sysfunc(pathname(work))\lib2";

data lib1.want1 lib1.want2 lib1.want3;
  set sashelp.class;
run;
data lib2.want1;
  set lib1.want1;
run;
data lib2.v_want2;
  set lib1.want1;
  if _n_=5 then call missing(sex);
run;

proc sql;
  create view lib2.v_want3 as
  select * from lib1.want3
  ;
quit;

proc sql;
  create table comp_tables as
  select 
    l.libname as lib1,
    l.memname as ds1,
    r.libname as lib2,
    r.memname as ds2
  from 
    dictionary.tables l
    inner join
    dictionary.tables r
    on
      l.libname='LIB1' and r.libname='LIB2'
      and l.memtype='DATA' and r.memtype='DATA'
      and 
        (
          l.memname=r.memname
          or 
          substrn(r.memname,1,2)='V_' and l.memname=substrn(r.memname,3)
        )
  ;
quit;

%macro compare(lib1,ds1,lib2,ds2);
  proc compare data=&amp;amp;lib1..&amp;amp;ds1 comp=&amp;amp;lib2..&amp;amp;ds2;
  run;
%mend;

data _null_;
  set comp_tables;
  length cmd $100;
  cmd=cats( '%compare(',catx(',',lib1,ds1,lib2,ds2),')' );
  call execute(cmd);
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 01 Aug 2021 01:45:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/758627#M239572</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2021-08-01T01:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/758628#M239573</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;
&lt;P&gt;Yes! The&amp;nbsp;&lt;SPAN&gt;difference between DS names is only the V_.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Aug 2021 01:18:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/758628#M239573</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2021-08-01T01:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/758629#M239574</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15889"&gt;@SWEETSAS&lt;/a&gt;&amp;nbsp; Then the code I've posted should work. ...and it will exclude any views.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Aug 2021 01:53:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/758629#M239574</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2021-08-01T01:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759051#M239791</link>
      <description>&lt;P&gt;Thanks for this program. I have some few questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="language-sas"&gt;&lt;CODE&gt;libname lib1 "%sysfunc(pathname(work))\lib1";
libname lib2 "%sysfunc(pathname(work))\lib2";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;What is the above program doing? Creating two libraries under WORK?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the last SQL procedure meant to do? Place all datasets in LIB1 into ds1 and all datasets in LIB2 into a ds2? And this is performed for only datasets that exit in both libraries?&lt;/P&gt;
&lt;P&gt;I ask because I did not see a counter that loops through the datasets in the COMPARE procedure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 03 Aug 2021 15:32:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759051#M239791</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2021-08-03T15:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759236#M239885</link>
      <description>&lt;P&gt;Something like this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  create table TABLES as
  select LIBNAME, MEMNAME, left(tranwrd(MEMNAME,'V_',' ')) as KEY 
  from DICTIONARY.TABLES
  where LIBNAME in ('MYLIB1','MYLIB2')
    and MEMNAME like '%WANT%' ;
quit;

data _null_;
  merge TABLES (in=A where=(LIBNAME='MYLIB1') rename=(MEMNAME=M1))
        TABLES (in=B where=(LIBNAME='MYLIB2') rename=(MEMNAME=M2));
  by KEY;
  if A and B;
  call execute('proc compare base=MYLIB1.'||M1||' data=MYLIB2.'||M2||';run;');
run
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Aug 2021 08:11:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759236#M239885</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-08-04T08:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759249#M239892</link>
      <description>&lt;P&gt;You didn't provide sample data so I had to create it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, the libname statements are just creating two sub-folders under work. This to create a fully working self-contained sample program that mimics what you describe.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Everything up to the last SQL proc is just for creation of sample data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The last SQL is then creating a table with a row per DS you want to compare. And the data _null_ step is then calling macro %compare() once per row in this table and though generating the code required to compare your tables.&lt;/P&gt;
&lt;P&gt;call execute() is "stacking" up code - so first the data _null_ step processes the source table (created in the SQL, have a look how this table looks like), call execute creates one macro call per row in this source table (and there we pass in the variable in this source table as the parameters to the macro) ...and once the data step finished iterating through the source table all the generated code (the macro calls) get executed.&lt;/P&gt;
&lt;P&gt;If you run the code I've posted you can see in the SAS log how these call execute() generated macro call syntax looks like.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Aug 2021 09:34:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759249#M239892</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2021-08-04T09:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759365#M239973</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks! thanks !! Thanks!!!. The code works. The code is able to elegantly sieve through the two libraries and smartly pick up the correct datasets to compare in both libraries and does the desired comparison, the V_ prefix not withstanding. Amazing!!!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please, I want to output the results of the comparison into corresponding datasets in another library (LIB3) using OUT= in PROC COMAPRE. The dataset name in the OUT= should be the same as captured in variable KEY (i.e., the dataset names&amp;nbsp; without the V_). That is, for MYLIB1.want1, the results of the comparison will be sent to MYLIB3.want1. For MYLIB1.want2, the results of comparison will be outputted into MLIB3.want2, etc.&amp;nbsp; &amp;nbsp; I also want to include ID statement in PROC COMPARE. Below is a macro that shows what I am trying to achieve. I sincerely thank you for your help!!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/*Data steps to assign counter "num" and data set names "d"*/&lt;/P&gt;
&lt;P&gt;%macro compare;&lt;BR /&gt;do i=1 to &amp;amp;num;&lt;BR /&gt;proc compare base=LIB1..&amp;amp;&amp;amp;d&amp;amp;i compare=LIB2..&amp;amp;d&amp;amp;i out=LIB3..&amp;amp;&amp;amp;d&amp;amp;i;&lt;BR /&gt;id id;&lt;BR /&gt;run;&lt;BR /&gt;%mend compare;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Aug 2021 15:20:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759365#M239973</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2021-08-04T15:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759537#M240036</link>
      <description>&lt;P&gt;Just add the required changes to the call execute. Like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;call execute('proc compare base=MYLIB1.'||M1||' data=MYLIB2.'||M2||' out=LIB3.'||KEY||'; id ID; run;');&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Aug 2021 21:55:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759537#M240036</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-08-04T21:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759540#M240037</link>
      <description>&lt;P&gt;Or&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;call execute(catt('proc compare base=MYLIB1.', M1, ' data=MYLIB2.', M2, ' out=LIB3.', KEY, '; id ID; run;'));&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 04 Aug 2021 21:57:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759540#M240037</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-08-04T21:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: Compare datasets with sound alike names in different directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/760145#M240341</link>
      <description>&lt;P&gt;Many thanks &lt;A title="A reply to ChrisNZ's message from 08-04-2021" href="https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/759537#M240036" target="_blank"&gt;@ChrisNZ&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It worked!!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Aug 2021 12:06:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Compare-datasets-with-sound-alike-names-in-different-directories/m-p/760145#M240341</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2021-08-07T12:06:25Z</dc:date>
    </item>
  </channel>
</rss>

