<?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: Input Box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849260#M1017655</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; &lt;A href="https://community.qlik.com/qlik-users/191437"&gt;Bhagirath&lt;/A&gt;‌‌, Thank You Sir, for the effort you took into explaining me the solution. &lt;/P&gt;&lt;P&gt;I got the answer finally. The code is as you said. I just had to do a Partial Reload everytime I want to add a value.&lt;/P&gt;&lt;P&gt;----------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;LET vListQVDExists = not isnull(QVDCreateTime('Test.qvd'));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SalesDesc:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Customer, Sales Order ID,ShipDate,Product,Sales,Quantity&lt;/P&gt;&lt;P&gt;$(Customer1), $(SalesOrderID),$(ShipDate1), $(Product), $(Sales1), $(Quantity1)&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF $(vListQVDExists) then&lt;/P&gt;&lt;P&gt;Concatenate(SalesDesc)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * From Test.qvd (qvd);&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SalesNewDesc:&lt;/P&gt;&lt;P&gt;ADD LOAD * Inline [&lt;/P&gt;&lt;P&gt;Customer, Sales Order ID,ShipDate,Product,Sales,Quantity&lt;/P&gt;&lt;P&gt;$(Customer1), $(SalesOrderID),$(ShipDate1), $(Product), $(Sales1), $(Quantity1)&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE SalesDesc into 'D:\Projects\Test.qvd';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Adding the ADD keyword before the LOAD fucntion allows to partial reload..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Apr 2015 11:58:01 GMT</pubDate>
    <dc:creator>siddheshmane</dc:creator>
    <dc:date>2015-04-03T11:58:01Z</dc:date>
    <item>
      <title>Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849247#M1017641</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;How do I insert multiple values from a single input box. When I insert a value in the input box and append it to the original table and Later when I try to insert a different value in the input box, it overwrites the old value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" height="293" src="https://community.qlik.com/legacyfs/online/82854_Capture.PNG" style="height: 293.458064516129px; width: 684px;" width="684" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 03:44:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849247#M1017641</guid>
      <dc:creator>siddheshmane</dc:creator>
      <dc:date>2015-04-03T03:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849248#M1017642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siddhesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inputbox assigns value to variable. As variable can hold only one value at any instance, the previous value will not be present.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 05:16:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849248#M1017642</guid>
      <dc:creator>NareshGuntur</dc:creator>
      <dc:date>2015-04-03T05:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849249#M1017643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siddhesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can not append some value to your data table in QV model at run time.&lt;/P&gt;&lt;P&gt;Qlikview or BI tools are to show the data as it in and not for write back facility&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 05:30:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849249#M1017643</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-03T05:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849250#M1017644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So is there any way so that I can insert multiple values in the table. without using so many input boxes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 05:30:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849250#M1017644</guid>
      <dc:creator>siddheshmane</dc:creator>
      <dc:date>2015-04-03T05:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849251#M1017645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;further please share your sample app for better understanding of the problem &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 05:31:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849251#M1017645</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-03T05:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849252#M1017646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you elaborate what you are trying to do so that we can think of another approach&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 05:32:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849252#M1017646</guid>
      <dc:creator>NareshGuntur</dc:creator>
      <dc:date>2015-04-03T05:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849253#M1017647</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 shared my qv file.&amp;nbsp; The requirement is that I need to input values into the table. But as seen I cannot input more than one value for a variable. The previous variable value gets overwritten. I have created an input box with variables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ShipDate&lt;/P&gt;&lt;P&gt;Customer&lt;/P&gt;&lt;P&gt;SalesOrderID&lt;/P&gt;&lt;P&gt;Product&lt;/P&gt;&lt;P&gt;Sales&lt;/P&gt;&lt;P&gt;Quantity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I input values into these variables and then the variables are loaded in the table.&lt;/P&gt;&lt;P&gt;Now, what if I want to load another value to the table from the input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 05:44:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849253#M1017647</guid>
      <dc:creator>siddheshmane</dc:creator>
      <dc:date>2015-04-03T05:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849254#M1017648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While reloading reload your base file then concatenate inline load from variables and store it in qvd &lt;/P&gt;&lt;P&gt;and while doing next reload use the data from qvd and append with fresh values from variables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 05:56:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849254#M1017648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-03T05:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849255#M1017649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried using your method, but it doesn't seem to work. Please tell me if I have missed any steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- I loaded the excel file into the script,&lt;/P&gt;&lt;P&gt;- Loaded the inline values and concatenated them to the table.&lt;/P&gt;&lt;P&gt;- Stored the values into a .qvd file.&lt;/P&gt;&lt;P&gt;- Dropped the previously loaded excel table.&lt;/P&gt;&lt;P&gt;- Loaded the .qvd file in the Script.&lt;/P&gt;&lt;P&gt;- Loaded the inline values and concatenated them to the new table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 06:51:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849255#M1017649</guid>
      <dc:creator>siddheshmane</dc:creator>
      <dc:date>2015-04-03T06:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849256#M1017650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do it in this steps &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SalesDesc:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load variable values inline;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if( exists(inputentries.qvd))&lt;/P&gt;&lt;P&gt; concatenate &lt;/P&gt;&lt;P&gt;&amp;nbsp; Load * from inputentries.qvd(qvd)&lt;/P&gt;&lt;P&gt;end if &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store SalesDesc into inputentries.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;load excel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 07:19:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849256#M1017650</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-03T07:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849257#M1017651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried the steps you mentioned, but the values are still being overwritten. This is my code. Please review and suggest if there are any errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vListQVDExists = not isnull(QVDCreateTime('Test.qvd'));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SalesDesc:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Customer, Sales Order ID,ShipDate,Product,Sales,Quantity&lt;/P&gt;&lt;P&gt;$(Customer1), $(SalesOrderID),$(ShipDate1), $(Product), $(Sales1), $(Quantity1)&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF $(vListQVDExists) then&lt;/P&gt;&lt;P&gt;Concatenate(SalesDesc)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * From Test.qvd (qvd);&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE SalesDesc into 'D:\Projects\Test.qvd';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to store two values of a single field using one input box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 11:29:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849257#M1017651</guid>
      <dc:creator>siddheshmane</dc:creator>
      <dc:date>2015-04-03T11:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849258#M1017652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share this sample QVW and the excel file you are trying to load&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 11:42:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849258#M1017652</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-03T11:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849259#M1017653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here are the qv file and the excel data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 11:46:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849259#M1017653</guid>
      <dc:creator>siddheshmane</dc:creator>
      <dc:date>2015-04-03T11:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849260#M1017655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; &lt;A href="https://community.qlik.com/qlik-users/191437"&gt;Bhagirath&lt;/A&gt;‌‌, Thank You Sir, for the effort you took into explaining me the solution. &lt;/P&gt;&lt;P&gt;I got the answer finally. The code is as you said. I just had to do a Partial Reload everytime I want to add a value.&lt;/P&gt;&lt;P&gt;----------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;LET vListQVDExists = not isnull(QVDCreateTime('Test.qvd'));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SalesDesc:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Customer, Sales Order ID,ShipDate,Product,Sales,Quantity&lt;/P&gt;&lt;P&gt;$(Customer1), $(SalesOrderID),$(ShipDate1), $(Product), $(Sales1), $(Quantity1)&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF $(vListQVDExists) then&lt;/P&gt;&lt;P&gt;Concatenate(SalesDesc)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * From Test.qvd (qvd);&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SalesNewDesc:&lt;/P&gt;&lt;P&gt;ADD LOAD * Inline [&lt;/P&gt;&lt;P&gt;Customer, Sales Order ID,ShipDate,Product,Sales,Quantity&lt;/P&gt;&lt;P&gt;$(Customer1), $(SalesOrderID),$(ShipDate1), $(Product), $(Sales1), $(Quantity1)&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE SalesDesc into 'D:\Projects\Test.qvd';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Adding the ADD keyword before the LOAD fucntion allows to partial reload..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 11:58:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849260#M1017655</guid>
      <dc:creator>siddheshmane</dc:creator>
      <dc:date>2015-04-03T11:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849261#M1017658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siddhesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please recheck, make sure every time you enter values to input box u need to save your document and then reload&lt;/P&gt;&lt;P&gt;i have done some dummy entries, see the attached QVD and paste it in the same location where qvw is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont think you can this input solution for Acesspoint, because the reload at server will not save values of variables user has changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyways you can mark my solutions correct or useful if it has helped you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 12:02:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849261#M1017658</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-03T12:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849262#M1017661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. Every time I reload, the values are entered into the table and then saved into the qvd file. But as you said this won't be the case while doing a reload at server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 12:15:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849262#M1017661</guid>
      <dc:creator>siddheshmane</dc:creator>
      <dc:date>2015-04-03T12:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849263#M1017665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am also attaching you the file. You can check and suggest me if I have made a mistake.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 12:22:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849263#M1017665</guid>
      <dc:creator>siddheshmane</dc:creator>
      <dc:date>2015-04-03T12:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849264#M1017669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you do not need this statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SalesNewDesc:&lt;/P&gt;&lt;P&gt;ADD LOAD * Inline [&lt;/P&gt;&lt;P&gt;Customer, Sales Order ID,ShipDate,Product,Sales,Quantity&lt;/P&gt;&lt;P&gt;$(Customer1), $(SalesOrderID),$(ShipDate1), $(Product), $(Sales1), $(Quantity1)&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as you have already loaded the same in SalesDesc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;below script is fine &lt;/P&gt;&lt;P&gt;LET vListQVDExists = not isnull(QVDCreateTime('Test.qvd'));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SalesDesc:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Customer, Sales Order ID,ShipDate,Product,Sales,Quantity&lt;/P&gt;&lt;P&gt;$(Customer1), $(SalesOrderID),$(ShipDate1), $(Product), $(Sales1), $(Quantity1)&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF $(vListQVDExists) then&lt;/P&gt;&lt;P&gt;Concatenate(SalesDesc)&lt;/P&gt;&lt;P&gt;LOAD * From Test.qvd (qvd);&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE SalesDesc into 'D:\Projects\Test.qvd';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can load the excel file data immediately after this and get that concatenated with the SalesDesc table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 14:16:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box/m-p/849264#M1017669</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-03T14:16:29Z</dc:date>
    </item>
  </channel>
</rss>

