<?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: Fuzzy Matching in Alteryx Designer Desktop Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Fuzzy-Matching/m-p/1427975#M353076</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/484527"&gt;@mfranchino&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Maybe you can try this way:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="录制_2026_01_08_11_04_27_308.gif" style="width: 712px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/416046iA9DF53046DC4B6D8/image-size/large?v=v2&amp;amp;px=999" role="button" title="录制_2026_01_08_11_04_27_308.gif" alt="录制_2026_01_08_11_04_27_308.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="flying008_0-1767841596083.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/416047i7764E3E82ED3AA3D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="flying008_0-1767841596083.png" alt="flying008_0-1767841596083.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 08 Jan 2026 03:06:45 GMT</pubDate>
    <dc:creator>flying008</dc:creator>
    <dc:date>2026-01-08T03:06:45Z</dc:date>
    <item>
      <title>Fuzzy Matching</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Fuzzy-Matching/m-p/1427938#M353066</link>
      <description>&lt;P&gt;Hello - I am having an issue with Fuzzy Match.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have a data source that looks like:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;NAME&lt;/TD&gt;&lt;TD&gt;ADDRESS&lt;/TD&gt;&lt;TD&gt;NUMBER&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AMBERFLORENCE&lt;/TD&gt;&lt;TD&gt;123 EXAMPLE&lt;/TD&gt;&lt;TD&gt;1234&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;TOM BRADY&lt;/TD&gt;&lt;TD&gt;456 EXAMPLE&lt;/TD&gt;&lt;TD&gt;4567&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;MIKE TROUT&lt;/TD&gt;&lt;TD&gt;789 EXAMPLE&lt;/TD&gt;&lt;TD&gt;7890&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I have a list of Names that I want to Fuzzy Match for in NAME. For Example, my text looks like&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;T Brady&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Florence&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the second table as a Text input in my Alteryx flow. I want to Fuzzy Match for the second table values in the first table. Please not my actual data set is much larger, I am just using this as an example.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks for the help!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jan 2026 16:15:40 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Fuzzy-Matching/m-p/1427938#M353066</guid>
      <dc:creator>mfranchino</dc:creator>
      <dc:date>2026-01-07T16:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Fuzzy Matching</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Fuzzy-Matching/m-p/1427948#M353067</link>
      <description>&lt;P&gt;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/484527"&gt;@mfranchino&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Okay, here’s how I would approach your need, given your example dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To my knowledge Fuzzy Match can’t handle the “AMBERFLORENCE” string since it’s not separated into it’s individual name parts and the Jaro nor Levenshtein methods can look at the string as if it needs to be broken up.&amp;nbsp; (others can correct me if I’m wrong)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But what you can do though is combine methods using Fuzzy Match to accomplish the “TOM BRADY” to “T Brady” match.&amp;nbsp; And then you can use the Contains() function to check the other ones.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My example workflow shows how you can accomplish this.&amp;nbsp; So I think as you expand your dataset out, you’ll need to consider a combination of approaches, but this should get you started in thinking about approaching your need a little differently than just one “fuzzy match.”&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jrlindem_0-1767808192091.png" style="width: 906px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/416038iA7EB9C0AF41A62CC/image-dimensions/906x469?v=v2" width="906" height="469" role="button" title="jrlindem_0-1767808192091.png" alt="jrlindem_0-1767808192091.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps, cheers, -Jay&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jan 2026 17:51:05 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Fuzzy-Matching/m-p/1427948#M353067</guid>
      <dc:creator>jrlindem</dc:creator>
      <dc:date>2026-01-07T17:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Fuzzy Matching</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Fuzzy-Matching/m-p/1427975#M353076</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/484527"&gt;@mfranchino&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Maybe you can try this way:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="录制_2026_01_08_11_04_27_308.gif" style="width: 712px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/416046iA9DF53046DC4B6D8/image-size/large?v=v2&amp;amp;px=999" role="button" title="录制_2026_01_08_11_04_27_308.gif" alt="录制_2026_01_08_11_04_27_308.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="flying008_0-1767841596083.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/416047i7764E3E82ED3AA3D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="flying008_0-1767841596083.png" alt="flying008_0-1767841596083.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jan 2026 03:06:45 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Fuzzy-Matching/m-p/1427975#M353076</guid>
      <dc:creator>flying008</dc:creator>
      <dc:date>2026-01-08T03:06:45Z</dc:date>
    </item>
  </channel>
</rss>

