<?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 Set analysis Set1 AND Set2 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-analysis-Set1-AND-Set2/m-p/256849#M97124</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That does the trick, thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Was struggling with the 1 (set identifier) first. I want to indicate that it represents the full set. Leaving it seems to default to the current selection. Am I right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Jun 2011 06:54:34 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-06-03T06:54:34Z</dc:date>
    <item>
      <title>Set analysis Set1 AND Set2</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-Set1-AND-Set2/m-p/256847#M97122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to make a set analysis expression for the following pseudo code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; (Column_A &amp;gt;= 5 AND Column_A &amp;lt;=12)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; OR&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; (Column_C &amp;gt;= 20 AND Column_D &amp;lt;= 50)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;AND&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; (Column_X &amp;lt;= 5) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; OR&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; (Column_Y &amp;gt;= 9)&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class="mcePaste" id="_mcePaste" style="position: absolute; width: 1px; height: 1px; overflow: hidden; top: 0px; left: -10000px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;﻿&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would lead to the following two set analysis expressions which should come together with an AND:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;{&amp;lt;Column_A = {"&amp;gt;=5&amp;lt;=12"}&amp;gt; + &amp;lt;Column_C = {"&amp;gt;=20&amp;lt;=50"}&amp;gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;AND&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;{&amp;lt;Column_X = {"&amp;lt;=5"}&amp;gt; + &amp;lt;Column_Y = {"&amp;lt;=9"}&amp;gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I replace this AND with the correct syntax in set analysis? Or do I have to rearrange the expression to make it work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2011 11:43:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-Set1-AND-Set2/m-p/256847#M97122</guid>
      <dc:creator />
      <dc:date>2011-06-01T11:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis Set1 AND Set2</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-Set1-AND-Set2/m-p/256848#M97123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems to me kind of over-elaborated, but something like the following should work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Sum({(&amp;lt; Column_A = {"&amp;gt;=5&amp;lt;=12"} &amp;gt; + &amp;lt; Column_C = {"&amp;gt;=20&amp;lt;=50"} &amp;gt;) * (&amp;lt; Column_X = {"&amp;lt;=5"} &amp;gt; + &amp;lt; Column_Y = {"&amp;lt;=9"} &amp;gt;)} Amount)&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/people/mabaeyens" style="font-size: 12px; outline-style: none; padding-top: 1px; padding-bottom: 1px; padding-left: 17px; color: #007fc0; zoom: 1; background-position: no-repeat no-repeat;"&gt;Miguel Angel Baeyens&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.grupocomex.com/" style="font-size: 12px; outline-style: none; color: #007fc0;"&gt;Comex Grupo Ibérica&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2011 12:07:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-Set1-AND-Set2/m-p/256848#M97123</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-06-01T12:07:31Z</dc:date>
    </item>
    <item>
      <title>Set analysis Set1 AND Set2</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-Set1-AND-Set2/m-p/256849#M97124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That does the trick, thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Was struggling with the 1 (set identifier) first. I want to indicate that it represents the full set. Leaving it seems to default to the current selection. Am I right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2011 06:54:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-Set1-AND-Set2/m-p/256849#M97124</guid>
      <dc:creator />
      <dc:date>2011-06-03T06:54:34Z</dc:date>
    </item>
    <item>
      <title>Set analysis Set1 AND Set2</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-Set1-AND-Set2/m-p/256850#M97125</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;/P&gt;&lt;P&gt;Well, yes. Preceding the set modifier with the "$" sign or nothing means the current state of selections. Preceding with the "1" instead means all possible values for the dimensions in your chart (or all values if there are no dimensions) regardless of current selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/people/mabaeyens" style="font-size: 12px; outline-style: none; padding-top: 1px; padding-bottom: 1px; padding-left: 17px; color: #007fc0; zoom: 1; background-position: no-repeat no-repeat;"&gt;Miguel Angel Baeyens&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.grupocomex.com/" style="font-size: 12px; outline-style: none; color: #007fc0;"&gt;Comex Grupo Ibérica&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2011 07:06:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-Set1-AND-Set2/m-p/256850#M97125</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-06-03T07:06:55Z</dc:date>
    </item>
  </channel>
</rss>

