<?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: Using If-else with AND and OR operators in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Using-If-else-with-AND-and-OR-operators/m-p/1796117#M1211233</link>
    <description>&lt;P&gt;Also this&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(Match(Product, 'A','B','C') or Match(Product, 'AB') or Match(Product, 'BC') or Match(Product, 'AC') or Match(Product, 'ABC'), .10, if(Match(Product, 'D','E') or Match(Product, 'DE'), .20, .30))&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 31 Mar 2021 17:08:07 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2021-03-31T17:08:07Z</dc:date>
    <item>
      <title>Using If-else with AND and OR operators</title>
      <link>https://community.qlik.com/t5/QlikView/Using-If-else-with-AND-and-OR-operators/m-p/1795529#M1211167</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/5533"&gt;@Anil_Babu_Samineni&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46628"&gt;@sunny_talwar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I want to create a reference line such that if user select Product A, B, C or combination of AB or BC or AC or ABC then it should display 10% in reference line.&lt;/P&gt;&lt;P&gt;Similarly, If product D, E or combination of DE should display 20%. Else 30%.&lt;/P&gt;&lt;P&gt;Can anyone please help me here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 07:38:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-If-else-with-AND-and-OR-operators/m-p/1795529#M1211167</guid>
      <dc:creator>Sumit2504</dc:creator>
      <dc:date>2021-03-30T07:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Using If-else with AND and OR operators</title>
      <link>https://community.qlik.com/t5/QlikView/Using-If-else-with-AND-and-OR-operators/m-p/1795830#M1211194</link>
      <description>&lt;P&gt;if(Count({&amp;lt;Product={'A','B','C'}&amp;gt;}Product) &amp;gt; 0, .10&lt;BR /&gt;,if(Count({&amp;lt;Product={'D','E'}&amp;gt;}Product) &amp;gt; 0, .20&lt;BR /&gt;, .30))&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 22:00:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-If-else-with-AND-and-OR-operators/m-p/1795830#M1211194</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-03-30T22:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using If-else with AND and OR operators</title>
      <link>https://community.qlik.com/t5/QlikView/Using-If-else-with-AND-and-OR-operators/m-p/1796117#M1211233</link>
      <description>&lt;P&gt;Also this&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(Match(Product, 'A','B','C') or Match(Product, 'AB') or Match(Product, 'BC') or Match(Product, 'AC') or Match(Product, 'ABC'), .10, if(Match(Product, 'D','E') or Match(Product, 'DE'), .20, .30))&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 17:08:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-If-else-with-AND-and-OR-operators/m-p/1796117#M1211233</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2021-03-31T17:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using If-else with AND and OR operators</title>
      <link>https://community.qlik.com/t5/QlikView/Using-If-else-with-AND-and-OR-operators/m-p/1796319#M1211268</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/133606"&gt;@Sumit2504&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/5533"&gt;@Anil_Babu_Samineni&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46628"&gt;@sunny_talwar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I want to create a reference line such that if user select Product A, B, C or combination of AB or BC or AC or ABC then it should display 10% in reference line.&lt;/P&gt;&lt;P&gt;Similarly, If product D, E or combination of DE should display 20%. Else 30%.&lt;/P&gt;&lt;P&gt;Can anyone please help me here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The if/else statement is a logical, conditional expression that evaluates a condition and will only execute the block of code below it, if the condition is true. Please note that you have to use two characters as operator. Read more about JavaScript Operators&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 09:01:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-If-else-with-AND-and-OR-operators/m-p/1796319#M1211268</guid>
      <dc:creator>Heineman579</dc:creator>
      <dc:date>2021-04-01T09:01:52Z</dc:date>
    </item>
  </channel>
</rss>

