<?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: mutiple wilmatch and simple if in Water Cooler</title>
    <link>https://community.qlik.com/t5/Water-Cooler/mutiple-wilmatch-and-simple-if/m-p/1667527#M10866</link>
    <description>&lt;P&gt;Instead of a nested if, how about using OR:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;If(&lt;SPAN&gt;WildMatch(CODE,'*5','*5A')&lt;BR /&gt;or&amp;nbsp;(Not WildMatch(CODE,'*603*')&lt;BR /&gt;or&amp;nbsp;CODE &amp;gt; 401231&lt;BR /&gt;,CODE)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 21 Jan 2020 01:22:17 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2020-01-21T01:22:17Z</dc:date>
    <item>
      <title>mutiple wilmatch and simple if</title>
      <link>https://community.qlik.com/t5/Water-Cooler/mutiple-wilmatch-and-simple-if/m-p/1650236#M10676</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a a colonne with differents code to exclude the next code:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;CODE&amp;nbsp; &amp;gt; 401231&lt;/LI&gt;
&lt;LI&gt;CODE finish by '5*'&lt;/LI&gt;
&lt;LI&gt;CODE finish by '5A*&lt;/LI&gt;
&lt;LI&gt;Code don't begin by '603*'&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;I test this code, but i have errors :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if(WildMatch(CODE,'*5','*5A'),CODE,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if(Not WildMatch(CODE,'*603*'),CODE,NULL())&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (CODE &amp;gt; 401231,CODE)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 22:41:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/mutiple-wilmatch-and-simple-if/m-p/1650236#M10676</guid>
      <dc:creator>jmialoundama</dc:creator>
      <dc:date>2020-02-07T22:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: mutiple wilmatch and simple if</title>
      <link>https://community.qlik.com/t5/Water-Cooler/mutiple-wilmatch-and-simple-if/m-p/1650239#M10677</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/17522"&gt;@jmialoundama&lt;/a&gt;&amp;nbsp;Are you using QikView or Sense?&amp;nbsp; I would like to move this into the correct product forum.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2019 16:26:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/mutiple-wilmatch-and-simple-if/m-p/1650239#M10677</guid>
      <dc:creator>Sue_Macaluso</dc:creator>
      <dc:date>2019-11-22T16:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: mutiple wilmatch and simple if</title>
      <link>https://community.qlik.com/t5/Water-Cooler/mutiple-wilmatch-and-simple-if/m-p/1650241#M10679</link>
      <description>&lt;P&gt;What is the error message?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2019 16:28:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/mutiple-wilmatch-and-simple-if/m-p/1650241#M10679</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-11-22T16:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: mutiple wilmatch and simple if</title>
      <link>https://community.qlik.com/t5/Water-Cooler/mutiple-wilmatch-and-simple-if/m-p/1663032#M10826</link>
      <description>&lt;P&gt;You IF syntax is incorrect:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if(WildMatch(CODE,'*5','*5A'),CODE,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if(Not WildMatch(CODE,'*603*'),CODE&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;,NULL())&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (CODE &amp;gt; 401231,CODE)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Here is the right syntax (you might want to rearrange the NULL() but basically it is syntax error):&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if (WildMatch(CODE,'*5','*5A'),CODE,&lt;BR /&gt;&amp;nbsp; &amp;nbsp;if(Not WildMatch(CODE,'*603*'),CODE,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if (CODE&amp;gt; 401231,CODE,NULL())))&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2020 17:07:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/mutiple-wilmatch-and-simple-if/m-p/1663032#M10826</guid>
      <dc:creator>prasadmundewadi</dc:creator>
      <dc:date>2020-01-06T17:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: mutiple wilmatch and simple if</title>
      <link>https://community.qlik.com/t5/Water-Cooler/mutiple-wilmatch-and-simple-if/m-p/1667527#M10866</link>
      <description>&lt;P&gt;Instead of a nested if, how about using OR:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;If(&lt;SPAN&gt;WildMatch(CODE,'*5','*5A')&lt;BR /&gt;or&amp;nbsp;(Not WildMatch(CODE,'*603*')&lt;BR /&gt;or&amp;nbsp;CODE &amp;gt; 401231&lt;BR /&gt;,CODE)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 01:22:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/mutiple-wilmatch-and-simple-if/m-p/1667527#M10866</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2020-01-21T01:22:17Z</dc:date>
    </item>
  </channel>
</rss>

