<?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: How to compare Name List ...? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918958#M361978</link>
    <description>&lt;P&gt;All of these things would be good to mention in your original post, which should be complete, it should have all the information we need. From now on, please provide all relevant information in your first post on a subject.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please see this blog post for a method of doing this matching:&amp;nbsp;&lt;A href="https://blogs.sas.com/content/sgf/2021/09/21/fuzzy-matching/" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/sgf/2021/09/21/fuzzy-matching/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 05 Mar 2024 12:05:46 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2024-03-05T12:05:46Z</dc:date>
    <item>
      <title>How to compare Name List ...?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918951#M361972</link>
      <description>&lt;P&gt;How to compare Name (LAST, MIDDLE, FIRST NAME) with a single function/MACRO?!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Better with return of an index (like 0 to 100)...&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 11:38:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918951#M361972</guid>
      <dc:creator>hellohere</dc:creator>
      <dc:date>2024-03-05T11:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare Name List ...?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918952#M361973</link>
      <description>Need Consider ABBREV, Last/First Reverse etc.</description>
      <pubDate>Tue, 05 Mar 2024 11:40:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918952#M361973</guid>
      <dc:creator>hellohere</dc:creator>
      <dc:date>2024-03-05T11:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare Name List ...?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918954#M361974</link>
      <description>&lt;P&gt;"Compare" to what? Could you please write a few more sentences describing the problem in more detail?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 11:43:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918954#M361974</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-03-05T11:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare Name List ...?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918955#M361975</link>
      <description>&lt;P&gt;Here is data set of Names(Last, Middle, First) of a university, datasetA&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is also a dataset of Name(Last, Middle, First) of a class, datasetB.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Need to know what names from datasetB shows up in datsetA&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 11:52:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918955#M361975</guid>
      <dc:creator>hellohere</dc:creator>
      <dc:date>2024-03-05T11:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare Name List ...?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918956#M361976</link>
      <description>&lt;P&gt;Step 1. Sort both data sets by Last middle first (or maybe Last first middle)&lt;/P&gt;
&lt;P&gt;Step 2. Do a data step merge to determine see which names are in both data sets. Example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
    merge A(in=ina) B(in=inb);
    by last middle first;
    if ina and inb;
run;&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;Of course, this ignores some possible problems in doing this merge, such as mismatched capitalization, punctuation mismatch, spelling mismatch, and so on.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 12:00:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918956#M361976</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-03-05T12:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare Name List ...?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918957#M361977</link>
      <description>&lt;P&gt;Thanks, Surely this gives out an outcome.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But the data quality is poor. Say, "Wilson" might show up as "Wilon"; First Name and Last Name swap etc...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Need a function or macro to return matchness(0 to 100)&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 12:01:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918957#M361977</guid>
      <dc:creator>hellohere</dc:creator>
      <dc:date>2024-03-05T12:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare Name List ...?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918958#M361978</link>
      <description>&lt;P&gt;All of these things would be good to mention in your original post, which should be complete, it should have all the information we need. From now on, please provide all relevant information in your first post on a subject.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please see this blog post for a method of doing this matching:&amp;nbsp;&lt;A href="https://blogs.sas.com/content/sgf/2021/09/21/fuzzy-matching/" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/sgf/2021/09/21/fuzzy-matching/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 12:05:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918958#M361978</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-03-05T12:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare Name List ...?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918962#M361982</link>
      <description>Thanks</description>
      <pubDate>Tue, 05 Mar 2024 12:15:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918962#M361982</guid>
      <dc:creator>hellohere</dc:creator>
      <dc:date>2024-03-05T12:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare Name List ...?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918964#M361984</link>
      <description>PRX is what I need but is beyond me 

&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/PRX-Functions-to-Support-Multibyte-Characters/ta-p/815980" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/PRX-Functions-to-Support-Multibyte-Characters/ta-p/815980&lt;/A&gt;</description>
      <pubDate>Tue, 05 Mar 2024 12:26:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918964#M361984</guid>
      <dc:creator>hellohere</dc:creator>
      <dc:date>2024-03-05T12:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare Name List ...?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918965#M361985</link>
      <description>&lt;P&gt;Start a new thread using this is your subject line: PRX with multi-byte characters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are plenty of people here who are very knowledgeable about PRX (I am not one of them). Do NOT continue this thread by discussing PRX.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 12:33:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918965#M361985</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-03-05T12:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare Name List ...?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918980#M361987</link>
      <description>&lt;P&gt;If you are looking at a probabilistic match I recommend CDC supplied Link Plus available at&amp;nbsp;&lt;A href="https://www.cdc.gov/cancer/npcr/tools/registryplus/lp.htm" target="_blank"&gt;https://www.cdc.gov/cancer/npcr/tools/registryplus/lp.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The software is free to download and the documentation is there. You do export files to text but the software doesn't require the columns in the text files to have the same names as you can link a field named "LastName" to "FamilyName" or similar.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will use name, and if you have other useful information like address, phone numbers and such, to provide a probability of match.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherwise you need to very clearly describe just what you mean by the&amp;nbsp; "0 to 100".&lt;/P&gt;
&lt;P&gt;Functions like COMPGED, COMPLEV and SPEDIS will provide different measures of similarity as well.&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/409584"&gt;@hellohere&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;How to compare Name (LAST, MIDDLE, FIRST NAME) with a single function/MACRO?!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Better with return of an index (like 0 to 100)...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 15:18:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compare-Name-List/m-p/918980#M361987</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-03-05T15:18:41Z</dc:date>
    </item>
  </channel>
</rss>

