<?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 Last 3 months data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053745#M926644</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have 3 years of data with date field , but i need last&amp;nbsp; 3 months of data&amp;nbsp; Excluding current month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for EX:-&amp;nbsp; now April month is current month but i need "JAN,FEB,MARCH"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once if enter to "MAY" month&amp;nbsp; i need&amp;nbsp;&amp;nbsp; "FEB,MARCH,APRIL" data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Last 3 months data</title>
      <link>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053745#M926644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have 3 years of data with date field , but i need last&amp;nbsp; 3 months of data&amp;nbsp; Excluding current month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for EX:-&amp;nbsp; now April month is current month but i need "JAN,FEB,MARCH"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once if enter to "MAY" month&amp;nbsp; i need&amp;nbsp;&amp;nbsp; "FEB,MARCH,APRIL" data.&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/Last-3-months-data/m-p/1053745#M926644</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 months data</title>
      <link>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053746#M926645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chk dis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/980657"&gt;Re: How to Calculate the Last three Months Sales&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 04:44:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053746#M926645</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-04-06T04:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 months data</title>
      <link>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053747#M926646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Do you want set expression.? If so, try&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sum({$&amp;lt;Date={"&amp;gt;=$(=MonthStart(AddMonths(Today(),-3)))&amp;lt;$(=MonthEnd(AddMonths(Today(),-1)))"}&amp;gt;} Sales)&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 04:50:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053747#M926646</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-04-06T04:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 months data</title>
      <link>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053748#M926647</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;create variable in script like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vLast3MonthStartDate=Monthstart(today(),-4);&lt;/P&gt;&lt;P&gt;vLastMonthEndDate=MonthEnd(Today(),-1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while loading data use variable in where clause &lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;from table&lt;/P&gt;&lt;P&gt;where Date&amp;gt;=$(vLast3MonthStartDate) and Date&amp;lt;=$(vLastMonthEndDate)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 05:00:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053748#M926647</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2016-04-06T05:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 months data</title>
      <link>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053749#M926648</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;Use this expression in your Table,&lt;/P&gt;&lt;P&gt;&lt;SPAN class="func" style="font-style: inherit; font-weight: inherit; font-size: 10pt; line-height: 1.5em; color: #ff1493;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="func" style="font-style: inherit; font-weight: inherit; font-size: 10pt; line-height: 1.5em; color: #ff1493;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="func" style="font-style: inherit; font-weight: inherit; font-size: 10pt; line-height: 1.5em; color: #ff1493;"&gt;&lt;STRONG style="color: #000000;"&gt;Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; line-height: 1.5em;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="func" style="font-style: inherit; font-size: 10pt; line-height: 1.5em;"&gt;Year&lt;/SPAN&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; line-height: 1.5em;"&gt;=, &lt;/SPAN&gt;&lt;SPAN class="func" style="font-style: inherit; font-size: 10pt; line-height: 1.5em;"&gt;Month&lt;/SPAN&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; line-height: 1.5em;"&gt; =, &lt;/SPAN&gt;&lt;SPAN class="keyword" style="font-style: inherit; font-size: 10pt; line-height: 1.5em;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; line-height: 1.5em;"&gt;={&lt;/SPAN&gt;&lt;SPAN class="string" style="font-style: inherit; font-size: 10pt; line-height: 1.5em;"&gt;"$(='&amp;gt;=' &amp;amp; MonthStart(Today(), -2) &amp;amp; '&amp;lt;=' &amp;amp; MonthEnd(Today()))"&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-style: inherit; font-weight: inherit; font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG style="color: #000000;"&gt;}&amp;gt;} Sales) &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: inherit; font-weight: inherit; font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG style="color: #000000;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #000000; font-style: inherit; font-size: 10pt; font-weight: inherit;"&gt;HTH,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: inherit; font-weight: inherit; font-size: 10pt; line-height: 1.5em;"&gt;&lt;SPAN style="color: #000000;"&gt;Hirish&lt;/SPAN&gt;&lt;STRONG style="color: #000000;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 05:17:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053749#M926648</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-04-06T05:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 months data</title>
      <link>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053750#M926649</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;I will suggest dont use expression as its lower the performance.&lt;/P&gt;&lt;P&gt;I already face issue on same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go by &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/dreamer4"&gt;dreamer4&lt;/A&gt;&lt;/STRONG&gt; way suggested.&lt;/P&gt;&lt;P&gt;Define variables and pass to scripts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That will faster performance while you loading data.&lt;/P&gt;&lt;P&gt;This all when you have high amount of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lokesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 06:46:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053750#M926649</guid>
      <dc:creator />
      <dc:date>2016-04-06T06:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 months data</title>
      <link>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053751#M926650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to create a Variable &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;vPreviousMonth =Monthstart(today(),-4);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;vCurrentMonth =MonthEnd(Today(),-1);&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;Use the same Variable where you Required&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 06:54:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053751#M926650</guid>
      <dc:creator>SatyaPaleti</dc:creator>
      <dc:date>2016-04-06T06:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 months data</title>
      <link>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053752#M926651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This should work and probably a correct answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2017 06:23:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053752#M926651</guid>
      <dc:creator>vishalmanu</dc:creator>
      <dc:date>2017-09-12T06:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 months data</title>
      <link>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053753#M926652</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;The bellow exprection is working fine for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=count({&amp;lt;Date = {'&amp;gt;$(=Max((Addmonths(Date,-3)))) &amp;lt;$(=Max (Addmonths(Date)))'}&amp;gt;} CallID)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2018 08:33:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1053753#M926652</guid>
      <dc:creator>vinod22kv</dc:creator>
      <dc:date>2018-05-29T08:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 months data</title>
      <link>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1785981#M1210046</link>
      <description>&lt;P&gt;if&amp;nbsp; you want to select you can used&amp;nbsp; below equation&lt;/P&gt;&lt;P&gt;='('&amp;amp; Date(monthname ( Today()),'MMM') &amp;amp; '|'&amp;amp; Date(monthname ( AddMonths(Today(),-1)),'MMM')&amp;amp; '|'&amp;amp; Date(monthname ( AddMonths(Today(),-2)),'MMM')&amp;amp; ')'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 02:31:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-3-months-data/m-p/1785981#M1210046</guid>
      <dc:creator>chetanpatel</dc:creator>
      <dc:date>2021-02-25T02:31:13Z</dc:date>
    </item>
  </channel>
</rss>

