<?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: WildMatch---Gone Wild in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/WildMatch-Gone-Wild/m-p/251013#M710074</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks--Rakesh and Chris.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seemed to keep hanging up for some reason.&amp;nbsp; I threw some more infratructure at it and it loads in a reasonable amount of time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to do these kind a transformations often, so I'll work with the Pick and WildMatch again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Oct 2011 21:40:17 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-10-14T21:40:17Z</dc:date>
    <item>
      <title>WildMatch---Gone Wild</title>
      <link>https://community.qlik.com/t5/QlikView/WildMatch-Gone-Wild/m-p/251010#M710071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This started of as a simple request to group by account codes.&amp;nbsp; At first I thought that I could just substring out the numbers that I needed to match to.&amp;nbsp; But on further inspection I found that the numbers were structured in several different ways.&amp;nbsp; So I used to code in my load statement below to match the account codes to there category:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(WildMatch(AccountCodeFull,'*500140*') &amp;gt; 0,'North',&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(WildMatch(AccountCodeFull,'*211340*') &amp;gt; 0,'South',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if(WildMatch(AccountCodeFull,'*231402*') &amp;gt; 0,'East',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(WildMatch(AccountCodeFull,'*211440*') &amp;gt; 0,'West',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(WildMatch(AccountCodeFull,'*500240*') &amp;gt; 0,'Left',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(WildMatch(AccountCodeFull,'*127427*') &amp;gt; 0,'Right',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(WildMatch(AccountCodeFull,'*124166*') &amp;gt; 0,'Up',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(WildMatch(AccountCodeFull,'*147119*') &amp;gt; 0,'Down',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(WildMatch(AccountCodeFull,'*127146*') &amp;gt; 0,'Sideways',&lt;/P&gt;&lt;P&gt;))))))))) as GLDescription1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works well with a limited load, however they full load which used to take 8 minutes has been running for an hour and a half.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a better way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2011 19:17:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WildMatch-Gone-Wild/m-p/251010#M710071</guid>
      <dc:creator />
      <dc:date>2011-10-14T19:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: WildMatch---Gone Wild</title>
      <link>https://community.qlik.com/t5/QlikView/WildMatch-Gone-Wild/m-p/251011#M710072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pick(WildMatch(AccountCodeFull,'*500140*', '*211340*', '*231402*', '*211440*', '*500240*', '*127427*', '*124166*', '*147119*', '*127146*'), 'North', 'South', 'East', 'West', 'Left', 'Right', 'Up', 'Down', 'Sideways') as GLDescription1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: comma was missing. Added.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2011 19:31:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WildMatch-Gone-Wild/m-p/251011#M710072</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2011-10-14T19:31:26Z</dc:date>
    </item>
    <item>
      <title>WildMatch---Gone Wild</title>
      <link>https://community.qlik.com/t5/QlikView/WildMatch-Gone-Wild/m-p/251012#M710073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just recently posted a blog article about this sort of thing. Check it out &lt;A href="http://biventure.blogspot.com/2011/09/wild-thing-ill-map-your-pattern-strings.html"&gt;http://biventure.blogspot.com/2011/09/wild-thing-ill-map-your-pattern-strings.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use your pattern string arguments all in one call of wildmatch like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WildMatch(AccountCodeFull,'*500140*', '*211340*', '*231402*', '*211440*', '*500240*', '*127427*', '*124166*', '*147119*', '*127146*')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Having done that you'll be left with a number so you can use an inline table or whatever to generate a map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are more specific details in the blog so please take a look.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2011 19:33:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WildMatch-Gone-Wild/m-p/251012#M710073</guid>
      <dc:creator>chriscammers</dc:creator>
      <dc:date>2011-10-14T19:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: WildMatch---Gone Wild</title>
      <link>https://community.qlik.com/t5/QlikView/WildMatch-Gone-Wild/m-p/251013#M710074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks--Rakesh and Chris.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seemed to keep hanging up for some reason.&amp;nbsp; I threw some more infratructure at it and it loads in a reasonable amount of time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to do these kind a transformations often, so I'll work with the Pick and WildMatch again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2011 21:40:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WildMatch-Gone-Wild/m-p/251013#M710074</guid>
      <dc:creator />
      <dc:date>2011-10-14T21:40:17Z</dc:date>
    </item>
  </channel>
</rss>

