<?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 Calculated Value in QVD in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Store-Calculated-Value-in-QVD/m-p/1151900#M5545</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the support but I solved in this way: because of the qvd is composed by only a variable I replace the unique old data with the new one:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;[tabUpdate]:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;load replace(data,'$(dataLastUpdating)', '$(dateNow)') as data&lt;/P&gt;&lt;P&gt;FROM [$(Loadworkpath)data.qvd](qvd);&lt;/P&gt;&lt;P&gt;store [tabUpdate] into [$(Loadworkpath)data.qvd](qvd); &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Jun 2016 15:49:47 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-06-08T15:49:47Z</dc:date>
    <item>
      <title>Store Calculated Value in QVD</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Store-Calculated-Value-in-QVD/m-p/1151897#M5542</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 have a QVD with a dataValue (in the example the '&lt;SPAN style="font-size: 13.3333px;"&gt;date as lastDateQvd')&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;I need to update this value with the date of today:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let dateNow = today(1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[dateFromQVD]:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; date as lastDateQvd&lt;/P&gt;&lt;P&gt;FROM [$(Loadworkpath)data.qvd](qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After&amp;nbsp; the load there is some operation and at the end I hate to update the qvd with the $(dateNow) instead of the &lt;SPAN style="font-size: 13.3333px;"&gt;dataValue (in the example the '&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;date as lastDateQvd')&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 15:17:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Store-Calculated-Value-in-QVD/m-p/1151897#M5542</guid>
      <dc:creator />
      <dc:date>2016-06-08T15:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: Store Calculated Value in QVD</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Store-Calculated-Value-in-QVD/m-p/1151898#M5543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where is the dataValue that you are referring to in your post above?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 15:39:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Store-Calculated-Value-in-QVD/m-p/1151898#M5543</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-06-08T15:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Store Calculated Value in QVD</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Store-Calculated-Value-in-QVD/m-p/1151899#M5544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would just use the variable in your script.&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;let vDateNow = today(1);&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;[dateFromQVD]:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; '$(vDateNow)' as lastDateQvd&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM [$(Loadworkpath)data.qvd](qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 15:43:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Store-Calculated-Value-in-QVD/m-p/1151899#M5544</guid>
      <dc:creator>erikzions</dc:creator>
      <dc:date>2016-06-08T15:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: Store Calculated Value in QVD</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Store-Calculated-Value-in-QVD/m-p/1151900#M5545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the support but I solved in this way: because of the qvd is composed by only a variable I replace the unique old data with the new one:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;[tabUpdate]:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;load replace(data,'$(dataLastUpdating)', '$(dateNow)') as data&lt;/P&gt;&lt;P&gt;FROM [$(Loadworkpath)data.qvd](qvd);&lt;/P&gt;&lt;P&gt;store [tabUpdate] into [$(Loadworkpath)data.qvd](qvd); &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 15:49:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Store-Calculated-Value-in-QVD/m-p/1151900#M5545</guid>
      <dc:creator />
      <dc:date>2016-06-08T15:49:47Z</dc:date>
    </item>
  </channel>
</rss>

