<?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: Qlikview set analysis in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-set-analysis/m-p/1757075#M719782</link>
    <description>&lt;P&gt;I tried the intersection logic but it did not&amp;nbsp; work in my case since I have multiple filters I guess...&lt;/P&gt;&lt;P&gt;And yes&amp;nbsp;&lt;SPAN&gt;function P() worked !&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Oct 2020 14:38:27 GMT</pubDate>
    <dc:creator>Saranya1</dc:creator>
    <dc:date>2020-10-29T14:38:27Z</dc:date>
    <item>
      <title>Qlikview set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-set-analysis/m-p/1756739#M719778</link>
      <description>&lt;P&gt;How we can count common records if we filter out two&amp;nbsp; values in a field?&lt;/P&gt;&lt;P&gt;For e.g i am calculating count(&amp;lt;{category={'a'}&amp;gt;number)&lt;/P&gt;&lt;P&gt;count(&amp;lt;{category={'b'}&amp;gt;number)&lt;/P&gt;&lt;P&gt;now if I want to have the count of&amp;nbsp; number that belongs to both a and b categories what will be the logic that involves some 'AND' condition or common count that belongs to both categories?&lt;/P&gt;&lt;P&gt;I Tried below&amp;nbsp;&lt;/P&gt;&lt;P&gt;count(&amp;lt;{category={'a'},{'b'}&amp;gt;number) but it works like OR logic&amp;nbsp; whereas I want only common records&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:43:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-set-analysis/m-p/1756739#M719778</guid>
      <dc:creator>Saranya1</dc:creator>
      <dc:date>2024-11-15T23:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-set-analysis/m-p/1756836#M719779</link>
      <description>&lt;P&gt;Using the data below:&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;Load * Inline [&lt;BR /&gt;dept,category,number&lt;BR /&gt;d1,a,100&lt;BR /&gt;d1,b,200&lt;BR /&gt;d2,b,200&lt;BR /&gt;d2,c,200&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;I added a third field, dept.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try using the&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/qlikview/April2020/Subsystems/Client/Content/QV_QlikView/ChartFunctions/SetAnalysis/set-modifiers-implicit-field-value-definitions.htm" target="_self"&gt;P()&lt;/A&gt;&amp;nbsp;function&lt;/P&gt;&lt;P&gt;=sum({&amp;lt;dept=P({&amp;lt;category={'a'}&amp;gt;}dept)*P({&amp;lt;category={'b'}&amp;gt;}dept)&amp;gt;}number)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="p_function.PNG" style="width: 597px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/43175i6C505274912E4610/image-size/large?v=v2&amp;amp;px=999" role="button" title="p_function.PNG" alt="p_function.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Oct 2020 18:53:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-set-analysis/m-p/1756836#M719779</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2020-10-28T18:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-set-analysis/m-p/1756846#M719780</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can use the function P(), as suggested before, or you can apply Boolean intersection to two Set Identifiers, each one with its own Set Modifier, like this:&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;count(&amp;lt;{category={'a'}&amp;gt; *&amp;nbsp;&amp;lt;{category={'b'}&amp;gt; number)&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also, I'd like to invite you to my lecture on Set Analysis and AGGR, that I will be delivering on-line on November 18th. You will learn many valuable techniques that can be used for advanced analytics, using AGGR and Set Analysis. Check out the link to the Masters Summit for Qlik in my signature below.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Oct 2020 19:16:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-set-analysis/m-p/1756846#M719780</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2020-10-28T19:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-set-analysis/m-p/1757073#M719781</link>
      <description>&lt;P&gt;Hey Thanks a lot &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; This actually worked and it fixed my issue &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Oct 2020 14:36:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-set-analysis/m-p/1757073#M719781</guid>
      <dc:creator>Saranya1</dc:creator>
      <dc:date>2020-10-29T14:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-set-analysis/m-p/1757075#M719782</link>
      <description>&lt;P&gt;I tried the intersection logic but it did not&amp;nbsp; work in my case since I have multiple filters I guess...&lt;/P&gt;&lt;P&gt;And yes&amp;nbsp;&lt;SPAN&gt;function P() worked !&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Oct 2020 14:38:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-set-analysis/m-p/1757075#M719782</guid>
      <dc:creator>Saranya1</dc:creator>
      <dc:date>2020-10-29T14:38:27Z</dc:date>
    </item>
  </channel>
</rss>

