<?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: IF WITH AND AND OR in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/IF-WITH-AND-AND-OR/m-p/1576638#M442586</link>
    <description>Hi, if you can assign only X, Y or Z, you need to review the conditions for Y, if type is perm and region is EU or AP, it's X and Y?, anyway, it could be something like&lt;BR /&gt;If(EmpType='TEMP', 'Z',&lt;BR /&gt;If(Match(Region,'EU','AP'), 'X', 'Y'))</description>
    <pubDate>Sun, 05 May 2019 10:25:02 GMT</pubDate>
    <dc:creator>rubenmarin</dc:creator>
    <dc:date>2019-05-05T10:25:02Z</dc:date>
    <item>
      <title>IF WITH AND AND OR</title>
      <link>https://community.qlik.com/t5/QlikView/IF-WITH-AND-AND-OR/m-p/1576591#M442583</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have three regions EU, AP and NA and two employee types PERM and TEMP.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now if Employee type is Perm and Region is EU or AP then we should get X&lt;/P&gt;&lt;P&gt;if Employee type is Perm and Region is EU or AP or NA then we should get Y&lt;/P&gt;&lt;P&gt;if Employee type is Temp then we should get Z.&lt;/P&gt;&lt;P&gt;Can some one provide a possible if condition for this in front end in a text box.&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 03:40:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-WITH-AND-AND-OR/m-p/1576591#M442583</guid>
      <dc:creator>rammarthi</dc:creator>
      <dc:date>2024-11-16T03:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: IF WITH AND AND OR</title>
      <link>https://community.qlik.com/t5/QlikView/IF-WITH-AND-AND-OR/m-p/1576638#M442586</link>
      <description>Hi, if you can assign only X, Y or Z, you need to review the conditions for Y, if type is perm and region is EU or AP, it's X and Y?, anyway, it could be something like&lt;BR /&gt;If(EmpType='TEMP', 'Z',&lt;BR /&gt;If(Match(Region,'EU','AP'), 'X', 'Y'))</description>
      <pubDate>Sun, 05 May 2019 10:25:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-WITH-AND-AND-OR/m-p/1576638#M442586</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2019-05-05T10:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: IF WITH AND AND OR</title>
      <link>https://community.qlik.com/t5/QlikView/IF-WITH-AND-AND-OR/m-p/1577535#M442634</link>
      <description>&lt;P&gt;It can be solved this way: where SR is Special Region&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;If&lt;/SPAN&gt;(&lt;SPAN class="s2"&gt;[Emp Type]&lt;/SPAN&gt; = 'Perm',&lt;BR /&gt;&lt;SPAN class="s1"&gt;If&lt;/SPAN&gt;(&lt;SPAN class="s1"&gt;Concat&lt;/SPAN&gt;(&lt;SPAN class="s1"&gt;Distinct&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;SR&lt;/SPAN&gt;) = 'APEUNA' &lt;SPAN class="s1"&gt;or&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;Concat&lt;/SPAN&gt;(&lt;SPAN class="s1"&gt;Distinct&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;SR&lt;/SPAN&gt;) = 'APNA' &lt;SPAN class="s1"&gt;or&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;Concat&lt;/SPAN&gt;(&lt;SPAN class="s1"&gt;Distinct&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;SR&lt;/SPAN&gt;) = 'EUNA' &lt;SPAN class="s1"&gt;or&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;Concat&lt;/SPAN&gt;(&lt;SPAN class="s1"&gt;Distinct&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;SR&lt;/SPAN&gt;) = 'NA' , 'Y',&lt;BR /&gt;&lt;SPAN class="s1"&gt;If&lt;/SPAN&gt;(&lt;SPAN class="s1"&gt;Concat&lt;/SPAN&gt;(&lt;SPAN class="s1"&gt;Distinct&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;SR&lt;/SPAN&gt;) = 'APEU'&lt;SPAN class="s1"&gt;or&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;Concat&lt;/SPAN&gt;(&lt;SPAN class="s1"&gt;Distinct&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;SR&lt;/SPAN&gt;) = 'EU'&amp;nbsp;&lt;SPAN class="s1"&gt;or&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;Concat&lt;/SPAN&gt;(&lt;SPAN class="s1"&gt;Distinct&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;SR&lt;/SPAN&gt;) = 'AP'&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;, 'X') ),&lt;BR /&gt;'Z')&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 15:14:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-WITH-AND-AND-OR/m-p/1577535#M442634</guid>
      <dc:creator>rammarthi</dc:creator>
      <dc:date>2019-05-07T15:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: IF WITH AND AND OR</title>
      <link>https://community.qlik.com/t5/QlikView/IF-WITH-AND-AND-OR/m-p/1577541#M442653</link>
      <description>That's a different condition, finally you are asking if region has NA, in that case is Y. If doesn't have NA but has AP or EU then is X.</description>
      <pubDate>Tue, 07 May 2019 15:27:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-WITH-AND-AND-OR/m-p/1577541#M442653</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2019-05-07T15:27:25Z</dc:date>
    </item>
  </channel>
</rss>

