<?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: Formula with Set Analysis different thant without set analysis in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796029#M1211213</link>
    <description>&lt;P&gt;Ow ! Is there any clue to bypass this null value&amp;nbsp; like the set analysis ?&lt;/P&gt;</description>
    <pubDate>Wed, 31 Mar 2021 13:15:46 GMT</pubDate>
    <dc:creator>Touix</dc:creator>
    <dc:date>2021-03-31T13:15:46Z</dc:date>
    <item>
      <title>Formula with Set Analysis different than without set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796025#M1211210</link>
      <description>&lt;P&gt;Hi Everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope you are OK.&lt;/P&gt;&lt;P&gt;I demand your help because I do not understand one of Qlikview behaviour.&lt;/P&gt;&lt;P&gt;My need is to store some variables results into a QVD files in order to accelerate the speed of the reporting.&lt;/P&gt;&lt;P&gt;Indeed, I have too many data so i want to have an intermediate step. But it is not simple because i need to rewrite my variables that contain SET ANALYSIS because it is not accepted into load script.&lt;/P&gt;&lt;P&gt;But when I modify my formula.... i have completely different result.&amp;nbsp;&lt;/P&gt;&lt;P&gt;My example :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sum ( {&amp;lt;
A.ANNEE={'2021'},
B.TYPE_B={'ENC'},
C.TYPE_C={'OPT'},
D.TYPE_D={"&amp;lt;&amp;gt;0"},
E.TYPE_E -= {'S S'}
&amp;gt;} F.QTY)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;RESULT : 13 000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rewrite in :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sum (
if(A.ANNEE='2021' and B.TYPE_B='ENC'  and C.TYPE_C='OPT' and D.TYPE_D&amp;lt;&amp;gt;0
E.TYPE_E &amp;lt;&amp;gt; 'S S'
,F.QTY,0)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;RESULT : 40 000&lt;/P&gt;&lt;P&gt;But I have exactly the same result &lt;STRONG&gt;without&lt;/STRONG&gt; this line :&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;E.TYPE_E -= {'S S'}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where can be the issue please ?&lt;/P&gt;&lt;P&gt;I am sorry I can not share the data... I have tooo many lines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks thanks thanks for your help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 13:22:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796025#M1211210</guid>
      <dc:creator>Touix</dc:creator>
      <dc:date>2021-03-31T13:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Formula with Set Analysis different thant without set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796027#M1211211</link>
      <description>&lt;P&gt;Some of your fields might have null values, in which case they'll get filtered out by the set analysis but not by the if() statements. That's the first place I'd check.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 13:11:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796027#M1211211</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2021-03-31T13:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Formula with Set Analysis different than without set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796028#M1211212</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/127813"&gt;@Touix&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Give a try with the below change:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sum ( {&amp;lt;
A.ANNEE={'2021'},
B.TYPE_B={'ENC'},
C.TYPE_C={'OPT'},
D.TYPE_D -= {'0'},
E.TYPE_E -= {'S S'}
&amp;gt;} F.QTY)&lt;/LI-CODE&gt;&lt;P&gt;I hope it can helps.&lt;/P&gt;&lt;P&gt;Best Regards&lt;BR /&gt;Andrea&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 13:14:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796028#M1211212</guid>
      <dc:creator>agigliotti</dc:creator>
      <dc:date>2021-03-31T13:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Formula with Set Analysis different thant without set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796029#M1211213</link>
      <description>&lt;P&gt;Ow ! Is there any clue to bypass this null value&amp;nbsp; like the set analysis ?&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 13:15:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796029#M1211213</guid>
      <dc:creator>Touix</dc:creator>
      <dc:date>2021-03-31T13:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Formula with Set Analysis different than without set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796031#M1211214</link>
      <description>&lt;P&gt;Same results &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 13:20:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796031#M1211214</guid>
      <dc:creator>Touix</dc:creator>
      <dc:date>2021-03-31T13:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Formula with Set Analysis different than without set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796033#M1211216</link>
      <description>&lt;P&gt;&lt;SPAN&gt;But I have exactly the same result&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;without&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;this line :&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Without set analysis :&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;E.TYPE_E &amp;lt;&amp;gt; 'S S'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Do you know what can be the difference between Set Analysis and IF ? Specially for the join part ?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 13:25:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796033#M1211216</guid>
      <dc:creator>Touix</dc:creator>
      <dc:date>2021-03-31T13:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Formula with Set Analysis different than without set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796040#M1211217</link>
      <description>&lt;P&gt;there is a mistake in the expression syntax:&lt;/P&gt;&lt;P&gt;sum (&lt;BR /&gt;if(A.ANNEE='2021' and B.TYPE_B='ENC' and C.TYPE_C='OPT' and D.TYPE_D&amp;lt;&amp;gt;0 &lt;FONT color="#FF0000"&gt;and&lt;/FONT&gt;&lt;BR /&gt;E.TYPE_E &amp;lt;&amp;gt; 'S S'&lt;BR /&gt;,F.QTY,0)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;there was an "and" operator missing...&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 13:45:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796040#M1211217</guid>
      <dc:creator>agigliotti</dc:creator>
      <dc:date>2021-03-31T13:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Formula with Set Analysis different than without set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796043#M1211218</link>
      <description>&lt;P&gt;Again, check if any null values exist in the field E.TYPE_E. If any null values exist, they will be filtered out by the set analysis but not by the IF() syntax, I believe.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 13:58:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796043#M1211218</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2021-03-31T13:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: Formula with Set Analysis different than without set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796070#M1211222</link>
      <description>&lt;P&gt;Sorry my bad.&lt;/P&gt;&lt;P&gt;I forgot an 'and'&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 14:47:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796070#M1211222</guid>
      <dc:creator>Touix</dc:creator>
      <dc:date>2021-03-31T14:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Formula with Set Analysis different than without set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796224#M1211259</link>
      <description>&lt;P&gt;"E.TYPE_E &amp;lt;&amp;gt; 'S S'"&amp;nbsp; is not exactly the same as "E.TYPE_E -= {'S S'}". It is the same as "E.TYPE_E = - {'S S'}" (note the position of the "-").&lt;/P&gt;&lt;P&gt;Are the fields in different or the same tables?&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 22:20:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796224#M1211259</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-03-31T22:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Formula with Set Analysis different than without set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796265#M1211263</link>
      <description>&lt;P&gt;E is another table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any solution to sotre the value of a variable write with set analysis into a QVD or other sheet ?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 06:02:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796265#M1211263</guid>
      <dc:creator>Touix</dc:creator>
      <dc:date>2021-04-01T06:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: Formula with Set Analysis different than without set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796324#M1211271</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/Store-a-variable-result-with-set-analysis-into-a-file/td-p/1796268" target="_blank"&gt;Store a variable result with set analysis into a f... - Qlik Community - 1796268&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 09:15:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formula-with-Set-Analysis-different-than-without-set-analysis/m-p/1796324#M1211271</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2021-04-01T09:15:29Z</dc:date>
    </item>
  </channel>
</rss>

