<?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 Why does separating terms by commas in a set analysis doesn't respect ranges? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Why-does-separating-terms-by-commas-in-a-set-analysis-doesn-t/m-p/131331#M9252</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This set analysis:&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15371248086734730 jive_text_macro" jivemacro_uid="_15371248086734730"&gt;
&lt;P&gt;=COUNT({&amp;lt;FechaEval={"&amp;gt;=20180802"},FechaEval={"&amp;lt;=20180803"}&amp;gt;}Medicion)"&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;gives me 3 as a result but it should give me 2 according to my understanding. &lt;STRONG&gt;What I'm getting wrong?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. Table I loaded:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15371247968227383" jivemacro_uid="_15371247968227383"&gt;
&lt;P&gt;T:&lt;/P&gt;
&lt;P&gt;LOAD * INLINE [FechaEval,Medicion&lt;/P&gt;
&lt;P&gt;20180801,1&lt;/P&gt;
&lt;P&gt;20180802,1&lt;/P&gt;
&lt;P&gt;20180803,1&lt;/P&gt;
&lt;P&gt;20180804,1&lt;/P&gt;
&lt;P&gt;20180805,1];&lt;/P&gt;

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 16 Sep 2018 19:08:27 GMT</pubDate>
    <dc:creator>julioarriaga</dc:creator>
    <dc:date>2018-09-16T19:08:27Z</dc:date>
    <item>
      <title>Why does separating terms by commas in a set analysis doesn't respect ranges?</title>
      <link>https://community.qlik.com/t5/App-Development/Why-does-separating-terms-by-commas-in-a-set-analysis-doesn-t/m-p/131331#M9252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This set analysis:&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15371248086734730 jive_text_macro" jivemacro_uid="_15371248086734730"&gt;
&lt;P&gt;=COUNT({&amp;lt;FechaEval={"&amp;gt;=20180802"},FechaEval={"&amp;lt;=20180803"}&amp;gt;}Medicion)"&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;gives me 3 as a result but it should give me 2 according to my understanding. &lt;STRONG&gt;What I'm getting wrong?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. Table I loaded:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15371247968227383" jivemacro_uid="_15371247968227383"&gt;
&lt;P&gt;T:&lt;/P&gt;
&lt;P&gt;LOAD * INLINE [FechaEval,Medicion&lt;/P&gt;
&lt;P&gt;20180801,1&lt;/P&gt;
&lt;P&gt;20180802,1&lt;/P&gt;
&lt;P&gt;20180803,1&lt;/P&gt;
&lt;P&gt;20180804,1&lt;/P&gt;
&lt;P&gt;20180805,1];&lt;/P&gt;

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Sep 2018 19:08:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Why-does-separating-terms-by-commas-in-a-set-analysis-doesn-t/m-p/131331#M9252</guid>
      <dc:creator>julioarriaga</dc:creator>
      <dc:date>2018-09-16T19:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: Why does separating terms by commas in a set analysis doesn't respect ranges?</title>
      <link>https://community.qlik.com/t5/App-Development/Why-does-separating-terms-by-commas-in-a-set-analysis-doesn-t/m-p/131332#M9253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't repeat the same field - it will only make the last one go into effect. For your specific case you should write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Count( {&amp;lt;FechaEval={"&lt;STRONG&gt;&amp;gt;=&lt;/STRONG&gt;20180802&lt;STRONG&gt;&amp;lt;=&lt;/STRONG&gt;20180303"}&amp;gt;} Medicion )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Sep 2018 20:09:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Why-does-separating-terms-by-commas-in-a-set-analysis-doesn-t/m-p/131332#M9253</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-09-16T20:09:09Z</dc:date>
    </item>
  </channel>
</rss>

