<?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: multiple wildmatches! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/multiple-wildmatches/m-p/1206689#M877801</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Source:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; *,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &lt;STRONG&gt;Pick(WildMatch([Project Name], '*drill*', '*pain*', '*'), 'Drilling', 'Painting', [Project Name]) &lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as [New Project Name] &lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;inline [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Project Name&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;drilling project&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Drilling Project&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Drill Project&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Drill project A&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;drill Project B&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Painting job&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Paint job&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Paing blue job&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Paint red&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sanding&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sanding&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sanding&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Leveling&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Leveling&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Leveling&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/141267_1.png" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Oct 2016 20:22:44 GMT</pubDate>
    <dc:creator>maxgro</dc:creator>
    <dc:date>2016-10-19T20:22:44Z</dc:date>
    <item>
      <title>multiple wildmatches!</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-wildmatches/m-p/1206687#M877799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys! I have a question with wildcard match and I prepared a example data.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;let's say there is basically 4 projects&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Drilling / Painting / Sanding / Leveling. but as you can see from below example Drilling and Painting are logged all differently whereas Sanding and Leveling are logged fine. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I want to have all the rows that have "drill" in them show up as "Drilling" and all the rows that have "paint" and "Painting"&lt;/P&gt;&lt;P&gt;2. Sanding and Leveling should come up as it is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what I am doing at the moment is using a wildcard search.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(wildmatch([Project Name], '*drill*' )&amp;gt;0, 'Drilling','') as [Project Name],&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this worked but only partially. anything that does not have "drill" in them.. so all the other projects where dropped...&lt;/P&gt;&lt;P&gt;and I could not use two wild matches at the same time. for example,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;if(wildmatch([Project Name], '*drill*' )&amp;gt;0, 'Drilling','') as [Project Name],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;if(wildmatch([Project Name], '*paint*' )&amp;gt;0, 'Painting','') as [Project Name],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;QV won't let me do this.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;is there anyway i can do multiple wildmatches and at the same time bring all the rest that does not match the match rule for wildmatch?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thank you in advance!!!&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 262px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="262"&gt;Project Name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;drilling project&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Drilling Project&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Drill Project&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Drill project A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;drill Project B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Painting job&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Paint job&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Paing blue job&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Paint red&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Sanding&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Sanding&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Sanding&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Leveling&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Leveling&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Leveling&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-wildmatches/m-p/1206687#M877799</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: multiple wildmatches!</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-wildmatches/m-p/1206688#M877800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you trying to do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-size: 13.3333px; font-style: inherit; font-family: inherit;"&gt;If(WildMatch([Project Name], '*drill*'), 'Drilling',&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-family: inherit; font-size: 13.3333px; font-style: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;If(WildMatch([Project Name], '*paint*'), 'Painting','') as [Project Name],&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2016 20:12:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-wildmatches/m-p/1206688#M877800</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-19T20:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: multiple wildmatches!</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-wildmatches/m-p/1206689#M877801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Source:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; *,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &lt;STRONG&gt;Pick(WildMatch([Project Name], '*drill*', '*pain*', '*'), 'Drilling', 'Painting', [Project Name]) &lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as [New Project Name] &lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;inline [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Project Name&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;drilling project&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Drilling Project&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Drill Project&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Drill project A&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;drill Project B&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Painting job&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Paint job&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Paing blue job&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Paint red&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sanding&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sanding&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sanding&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Leveling&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Leveling&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Leveling&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/141267_1.png" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2016 20:22:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-wildmatches/m-p/1206689#M877801</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2016-10-19T20:22:44Z</dc:date>
    </item>
  </channel>
</rss>

