<?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: Expression For Compare the QVD Size BY DateTime in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17871#M2940</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;In order to know the latest time stamp in a QVD use below logic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**we need to have one primary key and date field in the data source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if isnull(QvdCreateTime('\Fact.qvd')) THEN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Check if QVD is existing or not, if not then full reload&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;column1,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Date,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Column2&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;From&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(ooxml, embedded labels, table is sheet1) ;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Store Fact into \Fact.qvd;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Drop Table Fact;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ELSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MaxDate:&lt;/P&gt;&lt;P&gt;LOAD Max(Date_ID) as MaxDateQVD&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Identify Max date from existing QVD&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;\Fact.qvd&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vMaxDate = Date(Peek('MaxDateQVD'));&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Variable to load the maxdate from QVD&lt;/P&gt;&lt;P&gt;Drop Table MaxDate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then in table use where condition some thing like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;column1,&lt;/P&gt;&lt;P&gt;Date,&lt;/P&gt;&lt;P&gt;Column2&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is sheet1) where Date &amp;gt; $(vMaxDate); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cocatenate(Fact)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;column1,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Date,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Column2&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;From&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;\Fact.qvd(qvd) where NOT Exists(Primary key);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Store Fact into Fact.qvd;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Draop Table Fact;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;END IF;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Jun 2018 09:06:23 GMT</pubDate>
    <dc:creator>vardhancse</dc:creator>
    <dc:date>2018-06-13T09:06:23Z</dc:date>
    <item>
      <title>Expression For Compare the QVD Size BY DateTime</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17866#M2935</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 want to compare my QVD Size on the Behalf of my Last Execution Reload QVD Time to Current Reload time. How I can I do the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fields - QVD Name / QVD Time and QVD Size are available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" height="1100" style="width: 507px; height: 1102px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl68" height="17" style="text-align: center;" width="203"&gt;&lt;STRONG&gt;FileName&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD class="xl68" style="border-left: none; text-align: center;" width="83"&gt;&lt;STRONG&gt;FileSize (KB)&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD class="xl68" style="border-left: none; text-align: center;" width="136"&gt;&lt;STRONG&gt;FileTime&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_history_week.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;2,669,441.28&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/13/2018 8:34:13 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_versions.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;1,887,211.67&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/13/2018 8:47:33 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_issue_func_state_hist.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;140,910.47&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/13/2018 8:45:40 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_history_day.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;65,203.75&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/13/2018 8:26:58 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_issue_base_data.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;24,935.20&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/13/2018 8:23:17 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_issue_kpi_data.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;14,340.46&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/13/2018 8:27:58 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;t-20170822.qvw&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;6,817.03&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;8/22/2017 4:59:18 PM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_elements.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;5,961.13&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/13/2018 8:28:32 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_history_week.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;2,669,441.28&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/12/2018 8:34:13 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_versions.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;1,887,211.67&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/12/2018 8:47:33 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_issue_func_state_hist.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;627,112.03&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/12/2018 8:45:40 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_history_day.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;370,143.26&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/12/2018 8:26:58 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_issue_base_data.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;347,082.66&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/12/2018 8:23:17 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_issue_kpi_data.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;223,539.92&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/12/2018 8:27:58 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;t-20170822.qvw&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;196,836.50&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;8/22/2017 4:59:18 PM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_elements.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;3,396.22&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/12/2018 8:28:32 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_history_week.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;2,669,441.28&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/15/2018 8:34:13 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_versions.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;1,887,211.67&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/15/2018 8:47:33 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_issue_func_state_hist.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;627,112.03&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/15/2018 8:45:40 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_history_day.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;370,143.26&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/15/2018 8:26:58 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_issue_base_data.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;347,082.66&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/15/2018 8:23:17 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_issue_kpi_data.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;223,539.92&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/15/2018 8:27:58 AM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;t-20170822.qvw&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;196,836.50&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;8/22/2017 4:59:18 PM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="17" style="border-top: none;"&gt;v_utprep_elements.qvd&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;140,910.47&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;6/15/2018 8:28:32 AM&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please look into and let me any expression for the same.&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;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AK&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 03:39:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17866#M2935</guid>
      <dc:creator>sona_sa</dc:creator>
      <dc:date>2018-06-13T03:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: Expression For Compare the QVD Size BY DateTime</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17867#M2936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any Solution, May I expect from anyone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 06:42:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17867#M2936</guid>
      <dc:creator>sona_sa</dc:creator>
      <dc:date>2018-06-13T06:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Expression For Compare the QVD Size BY DateTime</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17868#M2937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming the table in your post, what is the outcome you expect?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 06:49:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17868#M2937</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-06-13T06:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: Expression For Compare the QVD Size BY DateTime</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17869#M2938</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 want when my QVD Size Increase or decrease at the next time reload from the current size or File Time, That QVD Information I need in line graph or bar graph.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 07:16:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17869#M2938</guid>
      <dc:creator>sona_sa</dc:creator>
      <dc:date>2018-06-13T07:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Expression For Compare the QVD Size BY DateTime</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17870#M2939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miguel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose, If I am reloading my application after 4 Hr., So I want the DateTime, Size of QVD, If there is any changes has been done from previous reload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Means Compare of New QVD Size and Reload Time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help on this. Urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 07:57:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17870#M2939</guid>
      <dc:creator>sona_sa</dc:creator>
      <dc:date>2018-06-13T07:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Expression For Compare the QVD Size BY DateTime</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17871#M2940</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;In order to know the latest time stamp in a QVD use below logic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**we need to have one primary key and date field in the data source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if isnull(QvdCreateTime('\Fact.qvd')) THEN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Check if QVD is existing or not, if not then full reload&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;column1,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Date,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Column2&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;From&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(ooxml, embedded labels, table is sheet1) ;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Store Fact into \Fact.qvd;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Drop Table Fact;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ELSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MaxDate:&lt;/P&gt;&lt;P&gt;LOAD Max(Date_ID) as MaxDateQVD&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Identify Max date from existing QVD&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;\Fact.qvd&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vMaxDate = Date(Peek('MaxDateQVD'));&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Variable to load the maxdate from QVD&lt;/P&gt;&lt;P&gt;Drop Table MaxDate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then in table use where condition some thing like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;column1,&lt;/P&gt;&lt;P&gt;Date,&lt;/P&gt;&lt;P&gt;Column2&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is sheet1) where Date &amp;gt; $(vMaxDate); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cocatenate(Fact)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;column1,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Date,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Column2&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;From&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;\Fact.qvd(qvd) where NOT Exists(Primary key);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Store Fact into Fact.qvd;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Draop Table Fact;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;END IF;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 09:06:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17871#M2940</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2018-06-13T09:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: Expression For Compare the QVD Size BY DateTime</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17872#M2941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rithi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where is sheet1, Can u explain : &lt;/P&gt;&lt;P&gt;Sample:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;column1,&lt;/P&gt;&lt;P&gt;Date,&lt;/P&gt;&lt;P&gt;Column2&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;From (ooxml, embedded labels, table is sheet1) ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Store Fact into \Fact.qvd;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Drop Table Fact;&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;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AK&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 09:51:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17872#M2941</guid>
      <dc:creator>sona_sa</dc:creator>
      <dc:date>2018-06-13T09:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Expression For Compare the QVD Size BY DateTime</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17873#M2942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Hi Varaha,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Please let me know if I have Original QVD like this :&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Summary:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;LOAD&amp;nbsp; [QVD Path], &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [QVD Size (KB)], &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [QVD Time],&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [QVD DateNum], &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [QVD Name], &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [QVD Folder Name]&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;FROM [$(vPath)*.qvd](qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Data is like - :&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Please find the attached Data.xls.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Now I can implement the Comparison between same QVD by Time and Size. in Graph. I want to check what are the QVD is increased or decreased by Current DateTime Reload. Difference between last reload QVD Size and Current Reload QVD Size.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 10:10:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17873#M2942</guid>
      <dc:creator>sona_sa</dc:creator>
      <dc:date>2018-06-13T10:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Expression For Compare the QVD Size BY DateTime</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17874#M2943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Ok, I am explaining :&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I have Original QVD like this :&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Summary:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;LOAD&amp;nbsp; [QVD Path],&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [QVD Size (KB)],&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [QVD Time],&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [QVD DateNum],&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [QVD Name],&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [QVD Folder Name]&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;FROM [$(vPath)*.qvd](qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Data is like - :&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Please find the attached Data.xls.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Now I have to implement the expression for Comparison between same QVD by Time and Size. in Graph. I want to check what are the QVD is increased or decreased by Current DateTime Reload to previous loaded QVD. Difference between last reload QVD Size and Current Reload QVD Size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 13:27:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17874#M2943</guid>
      <dc:creator>sona_sa</dc:creator>
      <dc:date>2018-06-13T13:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Expression For Compare the QVD Size BY DateTime</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17875#M2944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any Conclusion friends.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 15:22:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-For-Compare-the-QVD-Size-BY-DateTime/m-p/17875#M2944</guid>
      <dc:creator>sona_sa</dc:creator>
      <dc:date>2018-06-13T15:22:51Z</dc:date>
    </item>
  </channel>
</rss>

