<?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 input field values lost after reload in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/input-field-values-lost-after-reload/m-p/411759#M1303474</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using input fields in pivot table. So each user can input a value on lines.&lt;/P&gt;&lt;P&gt;But after a reload every values input have disapeared!&lt;/P&gt;&lt;P&gt;The goal is to keep those values because everybody must input and the values have to be shared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought this was stored in .shared files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am i wrong?&lt;/P&gt;&lt;P&gt;How can I keep and share this input fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
    <dc:creator />
    <dc:date>2026-01-26T18:19:17Z</dc:date>
    <item>
      <title>input field values lost after reload</title>
      <link>https://community.qlik.com/t5/QlikView/input-field-values-lost-after-reload/m-p/411759#M1303474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using input fields in pivot table. So each user can input a value on lines.&lt;/P&gt;&lt;P&gt;But after a reload every values input have disapeared!&lt;/P&gt;&lt;P&gt;The goal is to keep those values because everybody must input and the values have to be shared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought this was stored in .shared files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am i wrong?&lt;/P&gt;&lt;P&gt;How can I keep and share this input fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/input-field-values-lost-after-reload/m-p/411759#M1303474</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: input field values lost after reload</title>
      <link>https://community.qlik.com/t5/QlikView/input-field-values-lost-after-reload/m-p/411760#M1303475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;The values entered in the input box are usually assigned to variables and qlikview saves only the information about server objects, and not the data itself, in the .shared files .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you'd want to save the data for future use; you'd have to write a macro to save the input data to some file and read from it while relaoding the document. so that all the inputs values are available for use in the UI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, writing a procedure to save the data via access point can become tricky at time. As we know macro functionality is limited when used with Ajax. IE plugin provides better functionality, however, at times i find it to be inconsistent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the sample to write data from QV document to a XML file. You can tweak it to fit to your requirement.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Sub ExportToXML()&lt;BR /&gt;&lt;BR /&gt; dim FilePath&lt;BR /&gt;&lt;BR /&gt; FilePath = ActiveDocument.Evaluate("replace(documentpath(), documentname(), '')")&lt;BR /&gt;&lt;BR /&gt; FileName = ActiveDocument.Evaluate("replace(documentname(), '.qvw', '.xml')")&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; TableID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;= InputBox("Enter Table Object ID to export","User Input")&lt;BR /&gt;&lt;BR /&gt; 'TableID = UCase(TableID)&lt;BR /&gt;&lt;BR /&gt; if Len(TableID) &amp;gt; 0 then&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; Set ExportTable = ActiveDocument.GetSheetObject(TableID) &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; '&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Set ExportTable = ActiveDocument.GetSheetObject("TB08") &lt;BR /&gt;&lt;BR /&gt; ExportTable.ExportXml FilePath &amp;amp; FileName&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; End if&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;End Sub &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Mar 2013 10:35:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/input-field-values-lost-after-reload/m-p/411760#M1303475</guid>
      <dc:creator />
      <dc:date>2013-03-07T10:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: input field values lost after reload</title>
      <link>https://community.qlik.com/t5/QlikView/input-field-values-lost-after-reload/m-p/411761#M1303476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your quick anwser, i'm gonna try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Mar 2013 10:48:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/input-field-values-lost-after-reload/m-p/411761#M1303476</guid>
      <dc:creator />
      <dc:date>2013-03-07T10:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: input field values lost after reload</title>
      <link>https://community.qlik.com/t5/QlikView/input-field-values-lost-after-reload/m-p/411762#M1303477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Syed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It creates a file. I will manage a solution with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Mar 2013 16:37:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/input-field-values-lost-after-reload/m-p/411762#M1303477</guid>
      <dc:creator />
      <dc:date>2013-03-07T16:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: input field values lost after reload</title>
      <link>https://community.qlik.com/t5/QlikView/input-field-values-lost-after-reload/m-p/411763#M1303478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Syed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your great macro above - i had been struggling with this until i saw you post. I have managed to make the&amp;nbsp; export.xml fil. now.&lt;/P&gt;&lt;P&gt;However, is it possible, you can help me with the load function when loading the qlikview document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to have the exported data back into the table, when opening or reloading the qlik doc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Soren Kluge&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 05:40:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/input-field-values-lost-after-reload/m-p/411763#M1303478</guid>
      <dc:creator />
      <dc:date>2016-08-03T05:40:07Z</dc:date>
    </item>
  </channel>
</rss>

