<?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: Explain indirect set analyisis with example? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Explain-indirect-set-analyisis-with-example/m-p/1061797#M941838</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know what do you mean with "indirect" set analysis - but these here is a very good starting point for this topic &lt;A href="https://community.qlik.com/qlik-blogpost/4076"&gt;A Primer on Set Analysis&lt;/A&gt;‌.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 24 Jan 2016 08:05:01 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2016-01-24T08:05:01Z</dc:date>
    <item>
      <title>Explain indirect set analyisis with example?</title>
      <link>https://community.qlik.com/t5/QlikView/Explain-indirect-set-analyisis-with-example/m-p/1061796#M941837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi tell me indirect set analysis with real time example&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jan 2016 07:42:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Explain-indirect-set-analyisis-with-example/m-p/1061796#M941837</guid>
      <dc:creator>gkcchowdary</dc:creator>
      <dc:date>2016-01-24T07:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Explain indirect set analyisis with example?</title>
      <link>https://community.qlik.com/t5/QlikView/Explain-indirect-set-analyisis-with-example/m-p/1061797#M941838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know what do you mean with "indirect" set analysis - but these here is a very good starting point for this topic &lt;A href="https://community.qlik.com/qlik-blogpost/4076"&gt;A Primer on Set Analysis&lt;/A&gt;‌.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jan 2016 08:05:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Explain-indirect-set-analyisis-with-example/m-p/1061797#M941838</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-01-24T08:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Explain indirect set analyisis with example?</title>
      <link>https://community.qlik.com/t5/QlikView/Explain-indirect-set-analyisis-with-example/m-p/1061798#M941839</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;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;The element functions P() and E() must be used, representing the element set of possible values and the excluded values of a field, respectively. Inside the brackets, it is possible to specify one set expression and one field, e.g. P({1} Customer). These functions cannot be used in other expressions:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Examples:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;sum( {$&amp;lt;Customer = P({1&amp;lt;Product={‘Shoe’}&amp;gt;} Customer)&amp;gt;} Sales )&lt;/P&gt;&lt;P&gt;returns the sales for current selection, but only those customers that ever have bought the product ‘Shoe’. The element function P( ) here returns a list of possible customers; those that are implied by the selection ‘Shoe’ in the field Product.&lt;/P&gt;&lt;P&gt;sum( {$&amp;lt;Customer = P({1&amp;lt;Product={‘Shoe’}&amp;gt;})&amp;gt;} Sales )&lt;/P&gt;&lt;P&gt;same as above. If the field in the element function is omitted, the function will return the possible values of the field specified in the outer assignment.&lt;/P&gt;&lt;P&gt;sum( {$&amp;lt;Customer = P({1&amp;lt;Product={‘Shoe’}&amp;gt;} Supplier)&amp;gt;} Sales )&lt;/P&gt;&lt;P&gt;returns the sales for current selection, but only those customers that ever have supplied the product ‘Shoe’. The element function P( ) here returns a list of possible suppliers; those that are implied by the selection ‘Shoe’ in the field Product. The list of suppliers is then used as a selection in the field Customer.&lt;/P&gt;&lt;P&gt;sum( {$&amp;lt;Customer = E({1&amp;lt;Product={‘Shoe’}&amp;gt;})&amp;gt;} Sales )&lt;/P&gt;&lt;P&gt;returns the sales for current selection, but only those customers that never bought the product ‘Shoe’. The element function E( ) here returns the list of excluded customers; those that are excluded by the selection ‘Shoe’ in the field Product.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this:&lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-12533#comment-42336" title="https://community.qlik.com/docs/DOC-12533#comment-42336"&gt;https://community.qlik.com/docs/DOC-12533#comment-42336&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH,&lt;/P&gt;&lt;P&gt;PFA,&lt;/P&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jan 2016 08:56:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Explain-indirect-set-analyisis-with-example/m-p/1061798#M941839</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-01-24T08:56:30Z</dc:date>
    </item>
  </channel>
</rss>

