<?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: difference of 2 expressions in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166057#M897427</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no, in the second example the 2000 is excluded whereas in example 1 it is included!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jul 2016 08:16:34 GMT</pubDate>
    <dc:creator>Frank_Hartmann</dc:creator>
    <dc:date>2016-07-28T08:16:34Z</dc:date>
    <item>
      <title>difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166053#M897423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) Sum( {$&amp;lt;Year = (Year + {“20*”,1997}) – {2000} &amp;gt;} Sales ) &lt;/P&gt;&lt;P&gt;2) Sum( {$&amp;lt;Year = Year + ({“20*”,1997} – {2000}) &amp;gt;} Sales )&lt;/P&gt;&lt;P&gt;What is the difference between 1 and 2?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166053#M897423</guid>
      <dc:creator>arethaking</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166054#M897424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;In the first expression &lt;/P&gt;&lt;P&gt;First, it will add the current year to 20 series years plus 1997 and then it will subtract it will 2000 ,then based on the resultant value of year it will calculate the sum of sales.&lt;/P&gt;&lt;P&gt;In the second expression&lt;/P&gt;&lt;P&gt;First, it will do the subtraction of 20series plus 1997 to 2000 , then resultant value is added to the current year and based on the final year&amp;nbsp; value it will calculate the sum of sales.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 07:57:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166054#M897424</guid>
      <dc:creator>kumarkp412</dc:creator>
      <dc:date>2016-07-28T07:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166055#M897425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt; {$&amp;lt;Year = Year + ({“20*”,1997} – {2000}) &amp;gt;} Sales&lt;SPAN class="Bold"&gt; )&lt;/SPAN&gt;&lt;BR /&gt;returns the sales for the current selection but with additional selections in the field “Year”: 1997 and all that begin with “20” – however, not 2000. Note that if 2000 is included in the current selection, it will still be included after the modification. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt; {$&amp;lt;Year = (Year + {“20*”,1997}) – {2000} &amp;gt;} Sales&lt;SPAN class="Bold"&gt; )&lt;/SPAN&gt;&lt;BR /&gt;returns almost the same as above, but here 2000 will be excluded, also if it initially is included in the current selection. The example shows the importance of sometimes using brackets to define an order of precedence.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 08:02:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166055#M897425</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2016-07-28T08:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166056#M897426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will both give same results?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 08:11:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166056#M897426</guid>
      <dc:creator>arethaking</dc:creator>
      <dc:date>2016-07-28T08:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166057#M897427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no, in the second example the 2000 is excluded whereas in example 1 it is included!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 08:16:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166057#M897427</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2016-07-28T08:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166058#M897428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;1) Sum( {$&amp;lt;Year = (Year + {“20*”,1997}) – {2000} &amp;gt;} Sales )&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;* Means What ever value after 20-- from Year field&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;2000 --- 2016 and 1997 and then remove the 2000 Data from Year Field the value of Sales&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;2) Sum( {$&amp;lt;Year = Year + ({“20*”,1997} – {2000}) &amp;gt;} Sales )&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Still Confusing here. Need more analysis about this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 08:36:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166058#M897428</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-07-28T08:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166059#M897429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are these expression even working? I have a strange feeling that both of them might not be working, but I may be wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 09:09:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166059#M897429</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-28T09:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166060#M897430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But they are described in the QV help, so they should work &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 09:14:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166060#M897430</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2016-07-28T09:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166061#M897431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh really? Would you be able to guide me to location of these expressions. I would love to understand the syntax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 09:15:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166061#M897431</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-28T09:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166062#M897432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;search for : {set_identifier&amp;lt;set_modifier&amp;gt;}&lt;/P&gt;&lt;P&gt;in QV help. There is only one hit. you will find the expressions within that page &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 09:21:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166062#M897432</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2016-07-28T09:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166063#M897433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I search that the only useful link is this:&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/ChartFunctions/SetAnalysis/set-modifiers.htm" title="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/ChartFunctions/SetAnalysis/set-modifiers.htm"&gt;https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/ChartFunctions/SetAnalysis/set-modifiers.htm&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I might be missing it, but not sure where is the above expression in the set of example?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 09:28:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166063#M897433</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-28T09:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166064#M897434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ahhh, you have to search in the inbuild qlik help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Unbenannt.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/132803_Unbenannt.png" style="height: 204px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 09:33:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166064#M897434</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2016-07-28T09:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166065#M897435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using QlikView 12, so it takes me to the online help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 09:37:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166065#M897435</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-28T09:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166066#M897436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here you go &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 09:40:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166066#M897436</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2016-07-28T09:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: difference of 2 expressions</title>
      <link>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166067#M897437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it, thanks &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think what threw me off was Year = Year was used instead of Year = p(Year).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 09:43:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference-of-2-expressions/m-p/1166067#M897437</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-28T09:43:08Z</dc:date>
    </item>
  </channel>
</rss>

