<?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 Aggregate historical data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Aggregate-historical-data/m-p/27355#M782287</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;Hi,&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;I have a dashboard with 3 months data. I am presenting complete Log analysis based on 3 months data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;Now I am looking forward to present a char (on same dashboard) to show analysis based on &lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Year on Year (2016 - 2017)&lt;/LI&gt;&lt;LI&gt;Month on Month (2016March - 2017March)&lt;/LI&gt;&lt;LI&gt;Week on Week&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;For this kind of analysis I need to pull complete data starting year 2016 till data. It will be very large data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;It’s a log which are big in size. 5 kinds of logs, each 2 Gb in size for a month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;Is there any way I can pull/aggregate historical data weekly/monthly/yearly in QVDs (so that it will not consume too much space ) in order to display in chart only? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;Could you please provide me some idea how to approach this? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Poonam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>poonam_kulwal</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Aggregate historical data</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-historical-data/m-p/27355#M782287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;Hi,&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;I have a dashboard with 3 months data. I am presenting complete Log analysis based on 3 months data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;Now I am looking forward to present a char (on same dashboard) to show analysis based on &lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Year on Year (2016 - 2017)&lt;/LI&gt;&lt;LI&gt;Month on Month (2016March - 2017March)&lt;/LI&gt;&lt;LI&gt;Week on Week&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;For this kind of analysis I need to pull complete data starting year 2016 till data. It will be very large data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;It’s a log which are big in size. 5 kinds of logs, each 2 Gb in size for a month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;Is there any way I can pull/aggregate historical data weekly/monthly/yearly in QVDs (so that it will not consume too much space ) in order to display in chart only? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;Could you please provide me some idea how to approach this? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Poonam&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/Aggregate-historical-data/m-p/27355#M782287</guid>
      <dc:creator>poonam_kulwal</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate historical data</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-historical-data/m-p/27356#M782288</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;when you need to reduce the amount of data loaded, you will need to aggregate your data in the script, so you will need to use the GROUP BY clause. (no matter the source type, QVD, EXCEL, DATABASE)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have measure(s) in your table, here is one example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;fieldA&lt;/P&gt;&lt;P&gt;fieldB&lt;/P&gt;&lt;P&gt;fieldC&lt;/P&gt;&lt;P&gt;sum(measure) as measure&lt;/P&gt;&lt;P&gt;from...&lt;/P&gt;&lt;P&gt;Group by&lt;/P&gt;&lt;P&gt;fieldA,&lt;/P&gt;&lt;P&gt;fieldB,&lt;/P&gt;&lt;P&gt;fieldC;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;==&amp;gt; the rule is to group by all the fields that are not in an aggregation function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to give us the structure of your table and we will try to help you with the groupby you need.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2018 13:27:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-historical-data/m-p/27356#M782288</guid>
      <dc:creator>YoussefBelloum</dc:creator>
      <dc:date>2018-03-14T13:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate historical data</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-historical-data/m-p/27357#M782289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried same approach.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2018 13:53:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-historical-data/m-p/27357#M782289</guid>
      <dc:creator>poonam_kulwal</dc:creator>
      <dc:date>2018-03-14T13:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate historical data</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-historical-data/m-p/27358#M782290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2018 13:58:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-historical-data/m-p/27358#M782290</guid>
      <dc:creator>YoussefBelloum</dc:creator>
      <dc:date>2018-03-14T13:58:53Z</dc:date>
    </item>
  </channel>
</rss>

