<?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: Logic help requited to categerise string feild in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Logic-help-requited-to-categerise-string-feild/m-p/980140#M961702</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pick(WildMatch([Customer Name], '*WALMART*', '*TARGET*', '*'),&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Walmart', 'Target', 'Other')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Oct 2015 18:05:15 GMT</pubDate>
    <dc:creator>maxgro</dc:creator>
    <dc:date>2015-10-14T18:05:15Z</dc:date>
    <item>
      <title>Logic help requited to categerise string feild</title>
      <link>https://community.qlik.com/t5/QlikView/Logic-help-requited-to-categerise-string-feild/m-p/980137#M961699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have [Customer Name] , which has individual customer names , now I would like write a logic for [Customer Group ]says that if [Customer Name] contains &lt;EM&gt;walmart&lt;/EM&gt; then&amp;nbsp; Group should be Walnmart, if it contains &lt;EM&gt;target &lt;/EM&gt; then Group should be Target and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest me the best approach for this logic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 17:18:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Logic-help-requited-to-categerise-string-feild/m-p/980137#M961699</guid>
      <dc:creator>guruprem</dc:creator>
      <dc:date>2015-10-14T17:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: Logic help requited to categerise string feild</title>
      <link>https://community.qlik.com/t5/QlikView/Logic-help-requited-to-categerise-string-feild/m-p/980138#M961700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wildmatch() will leverage strings and wild cards and do a case insensitive search to find the right bucketing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(&amp;nbsp; wildmatch([Customer Name]),'*WALMART*','Walmart', &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( &lt;SPAN style="font-size: 13.3333px;"&gt;wildmatch([Customer Name] ,'*TARGET*','Target')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are these buckets mutually exclusive or could some include both walmart and target ? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 17:23:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Logic-help-requited-to-categerise-string-feild/m-p/980138#M961700</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2015-10-14T17:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Logic help requited to categerise string feild</title>
      <link>https://community.qlik.com/t5/QlikView/Logic-help-requited-to-categerise-string-feild/m-p/980139#M961701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if(wildmatch(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; [Customer Name],'*walmart*') =1, 'Walmart,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(&lt;SPAN style="font-size: 13.3333px;"&gt;wildmatch(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; [Customer Name],'*target*')=1, 'Target,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )) as CustomerGroup&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should work. You can add as many Groups as you want with the same formula.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 17:26:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Logic-help-requited-to-categerise-string-feild/m-p/980139#M961701</guid>
      <dc:creator>crystles</dc:creator>
      <dc:date>2015-10-14T17:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Logic help requited to categerise string feild</title>
      <link>https://community.qlik.com/t5/QlikView/Logic-help-requited-to-categerise-string-feild/m-p/980140#M961702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pick(WildMatch([Customer Name], '*WALMART*', '*TARGET*', '*'),&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Walmart', 'Target', 'Other')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 18:05:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Logic-help-requited-to-categerise-string-feild/m-p/980140#M961702</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-10-14T18:05:15Z</dc:date>
    </item>
  </channel>
</rss>

