<?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: AND operator in set analysis in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721464#M475487</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have the Guarantee role only in the AMS region? Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=Count({&amp;lt;[Report Date]={"$(MaxDate)"},&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;role-={'Guarantee'}&lt;/SPAN&gt;&amp;gt;} [StatusID])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If you have the role in other regions and you want to exclude it only for the AMS region then you might need to use an if in your expression:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(region = AMS, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Count({&amp;lt;[Report Date]={"$(MaxDate)"},&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;role-={'Guarantee'}&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;gt;} [StatusID]), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Count({&amp;lt;[Report Date]={"$(MaxDate)"}&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;gt;} [StatusID]))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;or create a new field in your script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;load &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(region=AMS and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;role='Gaurantee', 0, 1) as flag_validRecord&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;from...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;then in your expression:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Count({&amp;lt;[Report Date]={"$(MaxDate)"},&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;flag_validRecord&lt;/SPAN&gt;={1}&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;gt;} [StatusID])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jul 2014 15:42:54 GMT</pubDate>
    <dc:creator>gmoraleswit</dc:creator>
    <dc:date>2014-07-23T15:42:54Z</dc:date>
    <item>
      <title>AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721460#M475483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have a pivot table as in the image below, but there's one exception only for AMS (row dim), when the role = 'Guarantee' (the role is not in the pivot), so I should remove those from the "QD" count. But how do I include that in the set analysis to say "where region&amp;lt;&amp;gt;'AMS' AND role&amp;lt;&amp;gt;'Gaurantee' " without loosing the whole AMS row?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Count({&amp;lt;[Report Date]={"$(MaxDate)"}&amp;gt;} [StatusID])&lt;/P&gt;&lt;P&gt;&lt;IMG alt="pt.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/62813_pt.PNG.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jul 2014 17:44:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721460#M475483</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-21T17:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721461#M475484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oscar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need no AND inside a set_expression. Just separate several set_expressions with a comma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2014 15:27:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721461#M475484</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2014-07-23T15:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721462#M475485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That doesn't work because it will match/remove any coincidence, if for example I write this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=Count({&amp;lt;[Report Date]={"$(MaxDate)"},REGION-={"AMS"},ROLE-={"Guarantee"}&amp;gt;} [StatusID])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;In the pivot table, I'll missing any AMS data and all data with "guarantee" role&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2014 15:35:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721462#M475485</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-23T15:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721463#M475486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the Set Modifier P (possible), which in below example gives a list of possible id's that meet your criteria&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=Count({&amp;lt;[Report Date]={"$(MaxDate)"},[Id]=P({1&amp;lt;Region={'&amp;lt;&amp;gt;AMS'},Role={'&amp;lt;&amp;gt;Guarantee'}&amp;gt;} [Id])&amp;gt;} [StatusID])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2014 15:39:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721463#M475486</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2014-07-23T15:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721464#M475487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have the Guarantee role only in the AMS region? Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=Count({&amp;lt;[Report Date]={"$(MaxDate)"},&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;role-={'Guarantee'}&lt;/SPAN&gt;&amp;gt;} [StatusID])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If you have the role in other regions and you want to exclude it only for the AMS region then you might need to use an if in your expression:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(region = AMS, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Count({&amp;lt;[Report Date]={"$(MaxDate)"},&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;role-={'Guarantee'}&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;gt;} [StatusID]), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Count({&amp;lt;[Report Date]={"$(MaxDate)"}&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;gt;} [StatusID]))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;or create a new field in your script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;load &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(region=AMS and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;role='Gaurantee', 0, 1) as flag_validRecord&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;from...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;then in your expression:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Count({&amp;lt;[Report Date]={"$(MaxDate)"},&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;flag_validRecord&lt;/SPAN&gt;={1}&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;gt;} [StatusID])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2014 15:42:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721464#M475487</guid>
      <dc:creator>gmoraleswit</dc:creator>
      <dc:date>2014-07-23T15:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721465#M475488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;maybe like this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=Count({&amp;lt;[Report Date]={"$(MaxDate)"}, Region-={'AMS'}, Role-={'Guarantee'}&amp;gt;} [StatusID])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use -= to exclude values from set analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;regards&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2014 15:44:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721465#M475488</guid>
      <dc:creator>jaimeaguilar</dc:creator>
      <dc:date>2014-07-23T15:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721466#M475489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this and confirm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Count({&amp;lt;[Report Date]={"$(MaxDate)",Region-='AMS',Role-='Gaurantee'}&amp;gt;} [StatusID])&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2014 15:54:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721466#M475489</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-23T15:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721467#M475490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Happend what I thought, AMS QD value is 0, it should not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/62957_Capture.PNG.png" style="width: 620px; height: 63px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2014 16:00:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721467#M475490</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-23T16:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721468#M475491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Piet but it didn't work, I tried E() instead of P() and I get a very similar result of what I'm looking for, but still is not the answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2014 21:21:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721468#M475491</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-23T21:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721469#M475492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Gabriela, I just wanted to find a way to do it with set analysis &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2014 21:22:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721469#M475492</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-23T21:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721470#M475493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Jaime, but that will remove all AMS and all Guarantee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2014 21:22:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721470#M475493</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-23T21:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721471#M475494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oscar, maybe you can use the * intersection operator, something like below.(and maybe E instead of P)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=Count({&amp;lt;[Report Date]={"$(MaxDate)"},&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10pt; line-height: 1.5em;"&gt;[Id]=P({1&amp;lt;Region={'&amp;lt;&amp;gt;AMS'}&amp;gt;})*p({1&amp;lt;Role={'&amp;lt;&amp;gt;Guarantee'}&amp;gt;} [Id])&amp;gt;} [StatusID])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2014 15:02:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721471#M475494</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2014-07-24T15:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721472#M475495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/406104"&gt;http://community.qlik.com/message/406104&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/thread/126883"&gt;http://community.qlik.com/thread/126883&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Aviral Nag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jul 2014 06:54:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/AND-operator-in-set-analysis/m-p/721472#M475495</guid>
      <dc:creator>aveeeeeee7en</dc:creator>
      <dc:date>2014-07-25T06:54:19Z</dc:date>
    </item>
  </channel>
</rss>

