<?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: Last Year in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Last-Year/m-p/1445566#M433247</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be you forgot to add other set analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Sum({&amp;lt;Year = {"$(=Max(Year)-1)"},&amp;nbsp; Area -= {'Area-not-available'}, Item_Category ={$(vNoInstruments)}&amp;gt;} ExtendedUSD)/1000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/175730_Capture.PNG" style="height: 538px; width: 620px;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Sep 2017 13:41:14 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2017-09-06T13:41:14Z</dc:date>
    <item>
      <title>Last Year</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Year/m-p/1445562#M433243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;on my app i select Year/Month to see the sales.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like also to retrieve the sales for the same month of last year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There's a way to say in the formula to keep data of last year based on the year selected?&lt;/P&gt;&lt;P&gt;So if i select 2017 the formula will retrive 2017-1= 2016 ? Is something possible?&lt;BR /&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt;Area-={'Area-not-available'}&amp;gt;}ExtendedUSD),&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2017 13:08:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Year/m-p/1445562#M433243</guid>
      <dc:creator>qlikviewaf</dc:creator>
      <dc:date>2017-09-06T13:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: Last Year</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Year/m-p/1445563#M433244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Sum({&amp;lt;Area-={'Area-not-available'}, Year = {$(=Max(Year) - 1)}&amp;gt;}ExtendedUSD)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2017 13:11:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Year/m-p/1445563#M433244</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-09-06T13:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: Last Year</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Year/m-p/1445564#M433245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Current Year&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;sum({&amp;lt;YearField = {"$(=Max(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;YearField)&lt;/SPAN&gt;)"},&amp;nbsp; Area-={'Area-not-available'}&amp;gt;}ExtendedUSD)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Previous Year&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;sum({&amp;lt;YearField = {"$(=&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;YearField-1&lt;/SPAN&gt;)"},&amp;nbsp; Area-={'Area-not-available'}&amp;gt;}ExtendedUSD)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;sum({&amp;lt;YearField = {"$(=Max(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;YearField)-1&lt;/SPAN&gt;)"},&amp;nbsp; Area-={'Area-not-available'}&amp;gt;}ExtendedUSD)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2017 13:12:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Year/m-p/1445564#M433245</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2017-09-06T13:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Last Year</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Year/m-p/1445565#M433246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried without success&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May+June 2017 = 2986 , formula is ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May+June 2016, selecting 2017 as year doesn't give me 3247 which is the value expected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you kindly check my dashboard ?&lt;/P&gt;&lt;P&gt;Thank you !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2017 13:24:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Year/m-p/1445565#M433246</guid>
      <dc:creator>qlikviewaf</dc:creator>
      <dc:date>2017-09-06T13:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Last Year</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Year/m-p/1445566#M433247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be you forgot to add other set analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Sum({&amp;lt;Year = {"$(=Max(Year)-1)"},&amp;nbsp; Area -= {'Area-not-available'}, Item_Category ={$(vNoInstruments)}&amp;gt;} ExtendedUSD)/1000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/175730_Capture.PNG" style="height: 538px; width: 620px;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2017 13:41:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Year/m-p/1445566#M433247</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-09-06T13:41:14Z</dc:date>
    </item>
  </channel>
</rss>

