<?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 How to show current data over  2 tables......? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-show-current-data-over-2-tables/m-p/94456#M753971</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;I have a question asked by someone that Excel Spreadsheet has a data source file.&lt;/P&gt;&lt;P&gt;I loaded 2 tables from same data source file. Tables has last year and current year data.&lt;/P&gt;&lt;P&gt;Now my requirement is 2 tables has to show only current data leaving last year.&lt;/P&gt;&lt;P&gt;How can I achieve this....?&lt;/P&gt;&lt;P&gt;Thanks in Advance!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>manozpph</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>How to show current data over  2 tables......?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-current-data-over-2-tables/m-p/94456#M753971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;I have a question asked by someone that Excel Spreadsheet has a data source file.&lt;/P&gt;&lt;P&gt;I loaded 2 tables from same data source file. Tables has last year and current year data.&lt;/P&gt;&lt;P&gt;Now my requirement is 2 tables has to show only current data leaving last year.&lt;/P&gt;&lt;P&gt;How can I achieve this....?&lt;/P&gt;&lt;P&gt;Thanks in Advance!!&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/How-to-show-current-data-over-2-tables/m-p/94456#M753971</guid>
      <dc:creator>manozpph</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to show current data over  2 tables......?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-current-data-over-2-tables/m-p/94457#M753972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;new:&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;year,data&lt;/P&gt;&lt;P&gt;2018,2000&lt;/P&gt;&lt;P&gt;2017,1000&lt;/P&gt;&lt;P&gt;2016,3000&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;max(year) as maxyear&lt;/P&gt;&lt;P&gt;Resident new;&lt;/P&gt;&lt;P&gt;LET vMaxDate = floor(peek('maxyear'));&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;final:&lt;/P&gt;&lt;P&gt;load &lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;Resident&lt;/P&gt;&lt;P&gt;new where year=$(vMaxDate);&lt;/P&gt;&lt;P&gt;drop table new;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2018 03:45:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-current-data-over-2-tables/m-p/94457#M753972</guid>
      <dc:creator>shreya_nadkarni</dc:creator>
      <dc:date>2018-10-11T03:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to show current data over  2 tables......?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-current-data-over-2-tables/m-p/94458#M753973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You want to filter and load only current year data from Load or in front end. Try like below INLINE table is for example. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET vCurrYear = 'Year(Today())';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ID, DOCDATE, Subtotal&lt;/P&gt;&lt;P&gt;1, 6/27/2018, 100&lt;/P&gt;&lt;P&gt;2, 6/27/2018, 200&lt;/P&gt;&lt;P&gt;3, 6/27/2018, 100&lt;/P&gt;&lt;P&gt;4, 6/27/2017, 300&lt;/P&gt;&lt;P&gt;5, 6/27/2017, 200&lt;/P&gt;&lt;P&gt;6, 6/27/2017, 700&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE Year(DOCDATE) = $(vCurrYear);&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2018 04:25:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-current-data-over-2-tables/m-p/94458#M753973</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-10-11T04:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to show current data over  2 tables......?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-current-data-over-2-tables/m-p/94459#M753974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it.Thank you:)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2018 04:42:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-current-data-over-2-tables/m-p/94459#M753974</guid>
      <dc:creator>manozpph</dc:creator>
      <dc:date>2018-10-11T04:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to show current data over  2 tables......?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-current-data-over-2-tables/m-p/94460#M753975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you:)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2018 20:24:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-current-data-over-2-tables/m-p/94460#M753975</guid>
      <dc:creator>manozpph</dc:creator>
      <dc:date>2018-10-11T20:24:28Z</dc:date>
    </item>
  </channel>
</rss>

