<?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: Store values even after data loads again in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084960#M361327</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Oleg's example, SavedVariables is an internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Feb 2016 22:43:54 GMT</pubDate>
    <dc:creator>Peter_Cammaert</dc:creator>
    <dc:date>2016-02-09T22:43:54Z</dc:date>
    <item>
      <title>Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084955#M361322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have created an application with REST connection. the data is scheduled to load daily. I want to store the count of a variable in a table having one row as date field and other as count against each field. Even if data loads this table should not be lost. how to do that?&lt;/P&gt;&lt;P&gt;I have taken the count of the field in a variable let vStart = followers; I want to go on putting this in a table on daily basis. And save this table even if the data loads everyday.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 21:08:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084955#M361322</guid>
      <dc:creator />
      <dc:date>2016-02-09T21:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084956#M361323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can save the variable in a table like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SavedVariables:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vStart) as Start&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;AUTOGENERATE 1&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, you can store this table on the hard drive using the STORE command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE SavedVariables INTO MyFile.QVD;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;STORE SavedVariables INTO MyFile.CSV (TXT);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you really want to preserve the files for each reload, concatenate the timestamp into the file name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Oleg Troyansky&lt;/P&gt;&lt;P&gt;Upgrade your Qlik skills at the &lt;A href="http://masterssummit.com/"&gt;Masters Summit for Qlik&lt;/A&gt; - coming soon to Milan, Italy!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 21:44:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084956#M361323</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2016-02-09T21:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084957#M361324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use a three-step incremental load in your script like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create an internal table with the current value and the current date&lt;/LI&gt;&lt;LI&gt;If a saved copy of this table exists (history), add all records from this copy that refer to other days&lt;/LI&gt;&lt;LI&gt;Store the resulting table in the external copy (QVD)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way, you make sure that:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Only one record is written for every day, even if you run the script twice in a day&lt;/LI&gt;&lt;LI&gt;If your history file doesn't exist yet, it gets created during the first reload.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 21:50:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084957#M361324</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-02-09T21:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084958#M361325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following error occurred:&lt;/P&gt;&lt;P class="edc_error" style="padding: 0 10px; color: #595959; font-family: 'Courier New'; font-size: 15px; background: rgba(255, 38, 38, 0.2);"&gt;Syntax error, missing/misplaced FROM: follstoretemmptable: LOAD as storevar AUTOGENERATE 1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 21:54:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084958#M361325</guid>
      <dc:creator />
      <dc:date>2016-02-09T21:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084959#M361326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to create an internal table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 21:55:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084959#M361326</guid>
      <dc:creator />
      <dc:date>2016-02-09T21:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084960#M361327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Oleg's example, SavedVariables is an internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 22:43:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084960#M361327</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-02-09T22:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084961#M361328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your variable is empty and as a result expands to nothingness, leading to an invalid LOAD statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;LOAD as storevar AUTOGENERATE 1&lt;/SPAN&gt; is lacking a value (after the LOAD keyword) to put in storevar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 22:46:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084961#M361328</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-02-09T22:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084962#M361329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="datestore.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/114179_datestore.png" style="height: 348px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;I tried this, Is this ok?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 14:09:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084962#M361329</guid>
      <dc:creator />
      <dc:date>2016-02-10T14:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084963#M361330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have to change line 876 to this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;STRONG&gt;let&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; vStart = &lt;SPAN style="color: #3366ff;"&gt;Peek&lt;/SPAN&gt;( 'followers' , 0 , 'tempdatestoretable' );&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 14:30:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084963#M361330</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-02-10T14:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084964#M361331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My 2cts:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;let vStart = followers;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot do this in QlikView script, because&lt;SPAN style="font-family: 'courier new', courier;"&gt; followers&lt;/SPAN&gt; may be a field with many values. They won't fit in a single variable.&lt;/P&gt;&lt;P&gt;Use the peek() function to look in a cell of a specific row of a specific table. For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;let vStart = peek('followers'); // Simplified call&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will look in column &lt;SPAN style="font-family: 'courier new', courier;"&gt;followers&lt;/SPAN&gt; of the first row of the table that was created last. See Petter's post for the full call format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However the simplest approach is to load &lt;SPAN style="font-family: 'courier new', courier;"&gt;count([Values])&lt;/SPAN&gt; together with the current date and store that one in a QVD &lt;EM&gt;immediately&lt;/EM&gt;. No intermediate table processing. Your script then becomes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;tempdatestoretable:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD Count(values) AS Followers, Floor(Today()) as StoreDate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;RESIDENT ids;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;CONCATENATE (tempdatestoretable)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD *&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;FROM &lt;SPAN style="font-size: 13.3333px;"&gt;MyQVDTable.qvd (qvd)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px; font-family: 'courier new', courier;"&gt;WHERE Not Exists(StoreDate); // Don't load rows that already exist&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;STORE tempdatestoretable INTO MyQVDTable.qvd (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;DROP Table &lt;SPAN style="font-family: 'courier new', courier; font-size: 13.3333px;"&gt;tempdatestoretable;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 13.3333px;"&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, you still have to add a check to see whether the QVD really exists. The first time you run this code, there won't be a QVD...&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 14:35:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084964#M361331</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-02-10T14:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084965#M361332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="v1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/114181_v1.png" style="height: 348px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;changed it. still showing error at autogenerate 1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 14:35:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084965#M361332</guid>
      <dc:creator />
      <dc:date>2016-02-10T14:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084966#M361333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="qvd.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/114183_qvd.png" style="height: 254px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should qvd be a path?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 14:45:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084966#M361333</guid>
      <dc:creator />
      <dc:date>2016-02-10T14:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084967#M361334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At least you have a spelling error in the specification of file type:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(qbd)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(qvd)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 15:09:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084967#M361334</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-02-10T15:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084968#M361335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;corrected it. still giving same error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 15:12:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084968#M361335</guid>
      <dc:creator />
      <dc:date>2016-02-10T15:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084969#M361336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="sakjn.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/114187_sakjn.png" style="height: 264px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 15:30:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084969#M361336</guid>
      <dc:creator />
      <dc:date>2016-02-10T15:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084970#M361337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is exactly what the error message states:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of referring to a path like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C:\Users.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must start the path like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lib:// .... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where the lib points to as to the file system is configured in Qlik Sense. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 16:09:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084970#M361337</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-02-10T16:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084971#M361338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tempdatestoretable:&lt;/P&gt;&lt;P&gt;LOAD Count(valuee) AS Followers, Floor(Today()) as StoreDate&lt;/P&gt;&lt;P&gt;RESIDENT ids;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (tempdatestoretable)&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM 'lib://libfolder/MyQVDTable.qvd' (qvd)&lt;/P&gt;&lt;P&gt;WHERE Not Exists(StoreDate);&lt;/P&gt;&lt;P&gt;STORE tempdatestoretable INTO 'lib://libfolder/MyQVDTable.qvd' (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table tempdatestoretable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a folder it is still giving invalid path.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 16:32:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084971#M361338</guid>
      <dc:creator />
      <dc:date>2016-02-10T16:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084972#M361339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Should the folder already contain qvd file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 17:14:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084972#M361339</guid>
      <dc:creator />
      <dc:date>2016-02-10T17:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Store values even after data loads again</title>
      <link>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084973#M361340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for help. It worked &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 17:24:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-values-even-after-data-loads-again/m-p/1084973#M361340</guid>
      <dc:creator />
      <dc:date>2016-02-10T17:24:52Z</dc:date>
    </item>
  </channel>
</rss>

