<?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 IF conditions in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/multiple-IF-conditions/m-p/395906#M1167701</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank for the help guys.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found/used a very similar method making use of the NOT MATCH() function;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;F ( TransA = 'B' AND NOT MATCH (FreeField, 'B', 'Q', 'W', 'K') AND Checked = '1', -Quantity,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;IF ( TransA = 'H' AND FreeField = 'P' AND Checked = '1', -Quantity, 0.0) As Delivery&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks again&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Sep 2012 16:02:16 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-09-13T16:02:16Z</dc:date>
    <item>
      <title>multiple IF conditions</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-IF-conditions/m-p/395903#M1167698</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;How would I put the following into my script please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF ( TransA = 'B' AND FreeField NOT IN ('B', 'Q', 'W', 'K') AND Checked = '1', -Quantity,&lt;/P&gt;&lt;P&gt;IF ( TransA = 'H' AND FreeField = 'P' AND Checked = '1', -Quantity, 0.0) As Delivery&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Chirag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2012 14:24:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-IF-conditions/m-p/395903#M1167698</guid>
      <dc:creator />
      <dc:date>2012-09-11T14:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: multiple IF conditions</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-IF-conditions/m-p/395904#M1167699</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Try like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(TransA = 'B' and Checked = '1' , if(not mixmatch(FreeField, 'B','Q','W','K'), -Quantity),&lt;/P&gt;&lt;P&gt;IF ( TransA = 'H' AND FreeField = 'P' AND Checked = '1', -Quantity, 0.0)) as Delivery&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2012 17:44:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-IF-conditions/m-p/395904#M1167699</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-09-11T17:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: multiple IF conditions</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-IF-conditions/m-p/395905#M1167700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;something lke this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12.222222328186035px; color: #636363; font-family: Arial;"&gt;IF ( TransA = 'B' AND match(FreeField,'B','Q','W','K')=0 AND Checked = '1', -Quantity,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12.222222328186035px; color: #636363; font-family: Arial;"&gt;IF ( TransA = 'H' AND FreeField = 'P' AND Checked = '1', -Quantity, 0.0) As Delivery&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2012 17:55:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-IF-conditions/m-p/395905#M1167700</guid>
      <dc:creator />
      <dc:date>2012-09-11T17:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: multiple IF conditions</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-IF-conditions/m-p/395906#M1167701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank for the help guys.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found/used a very similar method making use of the NOT MATCH() function;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;F ( TransA = 'B' AND NOT MATCH (FreeField, 'B', 'Q', 'W', 'K') AND Checked = '1', -Quantity,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;IF ( TransA = 'H' AND FreeField = 'P' AND Checked = '1', -Quantity, 0.0) As Delivery&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks again&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 16:02:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-IF-conditions/m-p/395906#M1167701</guid>
      <dc:creator />
      <dc:date>2012-09-13T16:02:16Z</dc:date>
    </item>
  </channel>
</rss>

