<?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: Creating a wild Match search in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163373#M463604</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post an example of some of your data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've had to do a lot of data clean up to get this to work sometimes (especially when scraping from the web) so I still might be able to help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Jun 2016 08:40:19 GMT</pubDate>
    <dc:creator>ciaran_mcgowan</dc:creator>
    <dc:date>2016-06-22T08:40:19Z</dc:date>
    <item>
      <title>Creating a wild Match search</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163365#M463596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please could you assist in making my wild match search as dynamic as possible&lt;/P&gt;&lt;P&gt;I need to match column Name1 to Name2 if there is any matching words it must return true.&lt;/P&gt;&lt;P&gt;In my example all of them should return true im not sure what I am doing wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 11:26:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163365#M463596</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2016-06-21T11:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a wild Match search</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163366#M463597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks perfectly correct to me as only "Bubble Gum" exists in both name1 and name2&lt;/P&gt;&lt;P&gt;What exactly are you after?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 11:46:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163366#M463597</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2016-06-21T11:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a wild Match search</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163367#M463598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All of them them contain a word from the Name1 residing in Name2&lt;/P&gt;&lt;P&gt;I would like to all of them to say true...because they contain at least one word from Name1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 11:54:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163367#M463598</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2016-06-21T11:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a wild Match search</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163368#M463599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All of them them contain a word from the Name1 residing in Name2&lt;/P&gt;&lt;P&gt;I would like to all of them to say true...because they contain at least one word from Name1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 12:34:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163368#M463599</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2016-06-21T12:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a wild Match search</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163369#M463600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi bimanbeginner,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see what you're trying to do here. The first thing you need to do is separate out all the potential words from &lt;STRONG&gt;Name1&lt;/STRONG&gt;. In the load script, add this line:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Subfield&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Name1&lt;/SPAN&gt;, ' ') AS &lt;SPAN style="color: #800000;"&gt;Name1_Words &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will create a row of data for each word which means there will be duplication that may need to be removed later. Once the data is &lt;SPAN style="font-size: 13.3333px;"&gt;separated you can accomplish what you want with the script below:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;if&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;WildMatch&lt;/SPAN&gt;(&lt;SPAN style="color: #800000; font-size: 13.3333px;"&gt;Name2&lt;/SPAN&gt;, '*' &amp;amp; &lt;SPAN style="color: #800000; font-size: 13.3333px;"&gt;Name1_Words &lt;/SPAN&gt;&amp;amp; '*'),'True','False')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Job Done!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 13:16:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163369#M463600</guid>
      <dc:creator>ciaran_mcgowan</dc:creator>
      <dc:date>2016-06-21T13:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a wild Match search</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163370#M463601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What Ciaran mentioned above is the best option or if you think you have only couple of words then you can use the below expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(WildMatch(Name1,'*'&amp;amp;Name2&amp;amp;'*') or WildMatch(Name2,'*'&amp;amp;Name1&amp;amp;'*')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; or WildMatch(Name1,'*' &amp;amp;subfield(Name2, ' ' ,1)&amp;amp;'*') or WildMatch(Name1,'*' &amp;amp;subfield(Name2, ' ' ,2)&amp;amp;'*') ,'True','False')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Wildmatch.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/128659_Wildmatch.jpg" style="height: 350px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 13:26:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163370#M463601</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-06-21T13:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a wild Match search</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163371#M463602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suggest that you have a look at my example below, it works. I even added an extra field to test that it does.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/128702_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 15:58:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163371#M463602</guid>
      <dc:creator>ciaran_mcgowan</dc:creator>
      <dc:date>2016-06-21T15:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a wild Match search</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163372#M463603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you , I guess this does answer my question although it will not work in my actual case as the Name1 field is made up of many different combinations of delimiters &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 07:28:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163372#M463603</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2016-06-22T07:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a wild Match search</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163373#M463604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post an example of some of your data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've had to do a lot of data clean up to get this to work sometimes (especially when scraping from the web) so I still might be able to help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 08:40:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163373#M463604</guid>
      <dc:creator>ciaran_mcgowan</dc:creator>
      <dc:date>2016-06-22T08:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a wild Match search</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163374#M463605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Ciaran I appreciate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The root cause of my problem, is that I need to compare a bank statement to system transactions.&lt;/P&gt;&lt;P&gt;As you know with bank statements a client could put any reference when making a payment.&lt;/P&gt;&lt;P&gt;I need to link the payment on the statement to the transaction to show the reference the client has used.&lt;/P&gt;&lt;P&gt;The wild match I am using is to find any reference that may contain the clients name or a part thereof to create a new mapping table to try and Identify the new payments in the future...&amp;nbsp; Maybe there is a better way to do this...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;A href="https://community.qlik.com/thread/222070"&gt;Mapping Data&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 04:54:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-wild-Match-search/m-p/1163374#M463605</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2016-06-23T04:54:28Z</dc:date>
    </item>
  </channel>
</rss>

