<?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: Load multiple xls and save as a QVD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-multiple-xls-and-save-as-a-QVD/m-p/116837#M602585</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have faced same issue before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would load all the xls files into Qvd and then &lt;SPAN style="font-size: 10pt;"&gt;Load the data from QVD and then load the latest data from xls file and add it to the existing qvd file. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like Taylor said, look at some incremental loading details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Vidya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Oct 2018 14:51:53 GMT</pubDate>
    <dc:creator>poluvidyasagar</dc:creator>
    <dc:date>2018-10-18T14:51:53Z</dc:date>
    <item>
      <title>Load multiple xls and save as a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-xls-and-save-as-a-QVD/m-p/116835#M602583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, Thank you for your expertise in advance:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to use the loop&amp;nbsp; load store method of creating and loading from a qvd.&lt;/P&gt;&lt;P&gt;I have multiple xls in a folder which we have been loading all of the data each time using *.xls however this is becoming more time consuming daily (obviously).&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;So, i have successfully managed to created the script but can only manage it to check data from 1 of the xls in the given folder&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Please see the below and inform if possible a way to loop and read from every file and then append to the qvd.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thankyou&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TAB- SETUP LOOP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let VStartDate = '42800';&lt;/P&gt;&lt;P&gt;Let VEndDate&amp;nbsp;&amp;nbsp; =today()-1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TAB - LOOP START&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For vCurser = VStartDate to VEndDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vDateToLoad =&amp;nbsp;&amp;nbsp;&amp;nbsp; date(vCurser,'YYYY-MM-DD');&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //'2018-02-22'&lt;/P&gt;&lt;P&gt;let vqvdsuffix&amp;nbsp; = text(date(vCurser,'YYYY-MM'));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TAB-LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@1:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;(data removed)&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;\\*************_Dash\Test\test\*.xls&lt;/P&gt;&lt;P&gt;(html, codepage is 1252, embedded labels, table is @1) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where Date_Imported='$(vDateToLoad)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TAB- STORE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if NoOfFields ('@1') &amp;gt; 0 then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not isnull (filetime('\\Scan01\bi\Qlikview\Documents\Development\1LabelData_$(vqvdsuffix).qvd')) Then //Check the file exists&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (@1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;(data removed)&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;'\\************\1LabelData_$(vqvdsuffix).qvd'&lt;/P&gt;&lt;P&gt;(qvd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where not Exists (Date_Imported);&lt;/P&gt;&lt;P&gt;END IF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store @1 into '\**************\1LabelData_$(vqvdsuffix).qvd'(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table @1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END IF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for consideration&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 14:13:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-xls-and-save-as-a-QVD/m-p/116835#M602583</guid>
      <dc:creator>davyqliks</dc:creator>
      <dc:date>2018-10-18T14:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple xls and save as a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-xls-and-save-as-a-QVD/m-p/116836#M602584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i suggest you do some research on incremental loading.&lt;/P&gt;&lt;P&gt;3 types of incremental loading:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; insert&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; insert &amp;amp; update&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; insert, update &amp;amp; delete&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;choose which best suits you then apply.&lt;/P&gt;&lt;P&gt;best wishes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 14:46:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-xls-and-save-as-a-QVD/m-p/116836#M602584</guid>
      <dc:creator>wade12</dc:creator>
      <dc:date>2018-10-18T14:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple xls and save as a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-xls-and-save-as-a-QVD/m-p/116837#M602585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have faced same issue before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would load all the xls files into Qvd and then &lt;SPAN style="font-size: 10pt;"&gt;Load the data from QVD and then load the latest data from xls file and add it to the existing qvd file. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like Taylor said, look at some incremental loading details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Vidya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 14:51:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-xls-and-save-as-a-QVD/m-p/116837#M602585</guid>
      <dc:creator>poluvidyasagar</dc:creator>
      <dc:date>2018-10-18T14:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple xls and save as a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-xls-and-save-as-a-QVD/m-p/116838#M602586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some sample code from @amit Saini:&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;&lt;SPAN lang="EN-IN" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Code to Access all files in directory (subdirectories)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;SUB&lt;/STRONG&gt; DoDir (Root)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FOR&lt;/STRONG&gt; each File in filelist(Root&amp;amp; '\*.xls')&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;Tab1:&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD&lt;/STRONG&gt; &amp;lt;&amp;lt;Field Names&amp;gt;&amp;gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;[$(File)]&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(biff, embedded labels, table is &amp;lt;&amp;lt;Table name&amp;gt;&amp;gt;$);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;NEXT&lt;/STRONG&gt; File&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FOR&lt;/STRONG&gt; each Dir in dirlist (Root&amp;amp;'\*')&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;CALL&lt;/STRONG&gt; DoDir(Dir)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;NEXT&lt;/STRONG&gt; Dir&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;END&lt;/STRONG&gt; &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;SUB&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;CALL&lt;/STRONG&gt; DoDir('Your Directory');&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN lang="EN-IN" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Code to Access All sheets in a Excel work book&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Directory;&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;for&lt;/STRONG&gt; a=1 &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;to&lt;/STRONG&gt; 3&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD&lt;/STRONG&gt; employee&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FROM&lt;/STRONG&gt;&lt;BR /&gt;Looping\constructs1.xlsx // this is the excel sheet name&lt;BR /&gt;(ooxml, embedded labels, table is Sheet&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;$(a)&lt;/EM&gt;&lt;/STRONG&gt;);// $ sign allows to access the value of a&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Next &lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN lang="EN-IN" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN lang="EN-IN" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Code to Access all sheets in a excel work book and convert to QVD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;For&lt;/STRONG&gt; a=1 &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;to&lt;/STRONG&gt; 4&lt;BR /&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;Directory1:&lt;/EM&gt;&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD&lt;/STRONG&gt; employee&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FROM&lt;/STRONG&gt;&lt;BR /&gt;Looping\constructs1.xlsx&lt;BR /&gt;(ooxml, embedded labels, table is Sheet&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;$(a)&lt;/EM&gt;&lt;/STRONG&gt;);&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;//STORE Directory INTO C:\Users\asaini\Desktop\Looping\Directory$(a).QVD;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Next&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;STORE&lt;/STRONG&gt; Directory1 &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;INTO&lt;/STRONG&gt; C:\Users\amits\Desktop\Looping\Directory.QVD;&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Drop&lt;/STRONG&gt; &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Table&lt;/STRONG&gt; &lt;EM style="font-weight: inherit; font-family: inherit;"&gt;Directory1;&lt;/EM&gt;&lt;BR /&gt;Directory;&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD&lt;/STRONG&gt; employee&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FROM&lt;/STRONG&gt;&lt;BR /&gt;Looping\Directory.QVD&lt;BR /&gt;(qvd); &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Reference : &lt;A href="https://community.qlikview.com/thread/193440" title="https://community.qlikview.com/thread/193440"&gt;Dynamic Load of multiple qvds from a folder | Qlik Community&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 16:24:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-xls-and-save-as-a-QVD/m-p/116838#M602586</guid>
      <dc:creator>achettipalli</dc:creator>
      <dc:date>2018-10-18T16:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple xls and save as a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-xls-and-save-as-a-QVD/m-p/116839#M602587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;For incremental process into an existing QVD:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Get the last updated date from you QVD file&lt;/P&gt;&lt;P&gt;LastUpdatedDate:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;MAX(datecolumn) as MaxDate FROM [qvdfilepath...]/file.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;// get the first row value&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LET vLastUpdatedDate=&lt;STRONG&gt;peek&lt;/STRONG&gt;('MaxDatefilter',0,'LastUpdatedDate'); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Filter the data from excel file&lt;/P&gt;&lt;P&gt;Incremental:&lt;/P&gt;&lt;P&gt;Load columns FROM [excelfilepath].xls where &lt;SPAN style="font-size: 13.3333px;"&gt;datecolumn&lt;/SPAN&gt;&amp;gt; $(LastUpdatedDate);&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;columns FROM [qvdfilepath...]/file.qvd(qvd);&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;STORE &lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Incremental into &lt;SPAN style="font-size: 13.3333px;"&gt; [qvdfilepath...]/file.qvd(qvd);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;DROP&lt;/STRONG&gt; table &lt;SPAN style="font-size: 13.3333px;"&gt;Incremental;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 16:34:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-xls-and-save-as-a-QVD/m-p/116839#M602587</guid>
      <dc:creator>achettipalli</dc:creator>
      <dc:date>2018-10-18T16:34:25Z</dc:date>
    </item>
  </channel>
</rss>

