<?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: Get only Current Qtr data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025846#M932118</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this expression in that case:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Len(Trim(Avg({&amp;lt;Quarter ={'2016Q1'}&amp;gt;}Amount))) &amp;gt; 0, Sum({&amp;lt;Quarter ={'2015Q1'}&amp;gt;}Amount))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Mar 2016 10:43:55 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2016-03-08T10:43:55Z</dc:date>
    <item>
      <title>Get only Current Qtr data</title>
      <link>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025841#M932113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings for the Day!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have on table which contains Current Quarter and same Quarter from previous year data.&lt;/P&gt;&lt;P&gt;I have ID, Name, Current Qtr, Prev Qtr amount. But my requirement is i need to display only Current Qtr ID's.&lt;/P&gt;&lt;P&gt;For Ex 2016Q1 has 1,2,3,4,5,6 and 2015Q1 has 1,2,3,4,5,6,7 and in my table i have to display only 1,2,3,4,5,6 for both Qtr's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am attaching sample Qvw also. Could you please help me here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;QV 11 User&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/Get-only-Current-Qtr-data/m-p/1025841#M932113</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Get only Current Qtr data</title>
      <link>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025842#M932114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 10:09:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025842#M932114</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-03-08T10:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Get only Current Qtr data</title>
      <link>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025843#M932115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using this expression for previous expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(sum({&amp;lt;Quarter ={'2016Q1'}&amp;gt;}Amount) &amp;gt; 0, sum({&amp;lt;Quarter ={'2015Q1'}&amp;gt;}Amount))&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/117314_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 10:10:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025843#M932115</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-08T10:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Get only Current Qtr data</title>
      <link>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025844#M932116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tresesco,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You Very Much for Reply!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution will work for me but if I have amount as 0 in current month still i need to show that record also.&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;ID,Name,Quarter,Amount&lt;/P&gt;&lt;P&gt;1,A1,2015Q1,100&lt;/P&gt;&lt;P&gt;2,A2,2015Q1,110&lt;/P&gt;&lt;P&gt;3,A3,2015Q1,120&lt;/P&gt;&lt;P&gt;4,A4,2015Q1,130&lt;/P&gt;&lt;P&gt;5,A5,2015Q1,140&lt;/P&gt;&lt;P&gt;6,A6,2015Q1,150&lt;/P&gt;&lt;P&gt;7,A7,2015Q1,160&lt;/P&gt;&lt;P&gt;8,A8,2015Q1,20&lt;/P&gt;&lt;P&gt;1,A1,2016Q1,200&lt;/P&gt;&lt;P&gt;2,A2,2016Q1,210&lt;/P&gt;&lt;P&gt;3,A3,2016Q1,220&lt;/P&gt;&lt;P&gt;4,A4,2016Q1,230&lt;/P&gt;&lt;P&gt;5,A5,2016Q1,240&lt;/P&gt;&lt;P&gt;6,A6,2016Q1,250&lt;/P&gt;&lt;P&gt;8,A8,2016Q1,0&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case i need to show 1,2,3,4,5,6,8 values but with your solution it's not working.&lt;/P&gt;&lt;P&gt;Could you please help me here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;QV11 User&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 10:26:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025844#M932116</guid>
      <dc:creator />
      <dc:date>2016-03-08T10:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: Get only Current Qtr data</title>
      <link>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025845#M932117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&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;Thank You Very Much for Reply!&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;Your solution will work for me but if I have amount as 0 in current month still i need to show that record also.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD * Inline [&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ID,Name,Quarter,Amount&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;1,A1,2015Q1,100&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;2,A2,2015Q1,110&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;3,A3,2015Q1,120&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;4,A4,2015Q1,130&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;5,A5,2015Q1,140&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;6,A6,2015Q1,150&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;7,A7,2015Q1,160&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;8,A8,2015Q1,20&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;1,A1,2016Q1,200&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;2,A2,2016Q1,210&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;3,A3,2016Q1,220&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;4,A4,2016Q1,230&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;5,A5,2016Q1,240&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;6,A6,2016Q1,250&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;8,A8,2016Q1,0&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&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;In this case i need to show 1,2,3,4,5,6,8 values but with your solution it's not working.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Could you please help me here.&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;Thanks,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;QV11 User&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 10:26:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025845#M932117</guid>
      <dc:creator />
      <dc:date>2016-03-08T10:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Get only Current Qtr data</title>
      <link>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025846#M932118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this expression in that case:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Len(Trim(Avg({&amp;lt;Quarter ={'2016Q1'}&amp;gt;}Amount))) &amp;gt; 0, Sum({&amp;lt;Quarter ={'2015Q1'}&amp;gt;}Amount))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 10:43:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025846#M932118</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-08T10:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Get only Current Qtr data</title>
      <link>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025847#M932119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be de-select 'Suppress zero values' in Presentation tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 10:47:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025847#M932119</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2016-03-08T10:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Get only Current Qtr data</title>
      <link>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025848#M932120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt;Quarter ={'2015Q1'}, ID=&lt;SPAN style="color: #ff0000;"&gt;P&lt;/SPAN&gt;({&amp;lt;Quarter={'2016Q1'}&amp;gt;})&amp;gt;}Amount)&lt;/P&gt;&lt;P&gt;sum({&amp;lt;Quarter ={'2016Q1'}, ID=&lt;SPAN style="color: #ff0000;"&gt;P&lt;/SPAN&gt;({&amp;lt;Quarter={'2015Q1'}&amp;gt;})&amp;gt;}Amount)&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/117323_Untitled.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 10:50:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-only-Current-Qtr-data/m-p/1025848#M932120</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-03-08T10:50:19Z</dc:date>
    </item>
  </channel>
</rss>

