<?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: Issues loading multiple Excel files in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356820#M493367</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Anoush.&amp;nbsp; I've slightly modified the code which works for me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;SET DecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='$#,##0.00;($#,##0.00)';&lt;/P&gt;&lt;P&gt;SET TimeFormat='h:mm:ss TT';&lt;/P&gt;&lt;P&gt;SET DateFormat='DD/MM/YYYY';&lt;/P&gt;&lt;P&gt;SET TimestampFormat='MM/DD/YYYY h:mm:ss[.fff] TT';&lt;/P&gt;&lt;P&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;/P&gt;&lt;P&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Provide date range to fetch data from multiple excel sheets &lt;/P&gt;&lt;P&gt;set startDate = '01/01/2012';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endDate= addmonths(today(),-1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let a=Interval(month(endDate)-month(startDate),'m');&lt;/P&gt;&lt;P&gt;for i=0 to a;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let filename = Date(addmonths(startDate,i),'MM')&amp;amp;' '&amp;amp;Date(addmonths(startDate,i),'MMM')&amp;amp;' '&amp;amp;Year(Date(endDate))&amp;amp;' - Raw Data.xls';&lt;/P&gt;&lt;P&gt;let filefullpath = ('&lt;Z&gt;');&lt;/Z&gt;&lt;/P&gt;&lt;P&gt;LOAD [Field 1],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 2],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 3],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 4]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;$(filefullpath)&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is [Data$]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 May 2012 14:33:08 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-05-25T14:33:08Z</dc:date>
    <item>
      <title>Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356811#M493358</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've been experiencing some issues in loading multiple excel files.&amp;nbsp; The script freezes and doesn't respond when I try to do this. At the moment, I have 4 files to load into QlikView.&amp;nbsp; However, if I just load one excel file, then it works fine.&amp;nbsp; The files are exactly the same with the same column headings.&amp;nbsp; Each seperate excel represents a different month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone experienced similar issues?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajiv.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 12:40:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356811#M493358</guid>
      <dc:creator />
      <dc:date>2012-05-17T12:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356812#M493359</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 suspect that your load is creating a separate table for each Excel file, resulting in a complex synthetic key. This can cause the script to freeze or even crash if the key and dataset are large enough. You don't see this with a single file because then only one table is created and no synthetic key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that does not help, then I suggest that you post your application, a sample of it or your script for more help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 15:13:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356812#M493359</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2012-05-17T15:13:35Z</dc:date>
    </item>
    <item>
      <title>Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356813#M493360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Rajiv,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you loading all these excel file in a single table in Qlikview? As column headings are same they would be concatinated into single Qlikview table. Have you written a loop over monthly excel file to load data into single table?&lt;/P&gt;&lt;P&gt;Please post a sample of your Qlikview application so that it will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this help,&lt;/P&gt;&lt;P&gt;Anosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 15:36:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356813#M493360</guid>
      <dc:creator />
      <dc:date>2012-05-17T15:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356814#M493361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Anoush,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for getting back to me.&amp;nbsp; I no longer have the script as I put all the data into a single CSV file, which works but is not ideal as it requires to manipulate the data.&amp;nbsp; What does the loop do over the the monthly excel to load data into a single table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajiv.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 16:40:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356814#M493361</guid>
      <dc:creator />
      <dc:date>2012-05-17T16:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356815#M493362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anoush,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for getting back to me.&amp;nbsp; I no longer have the script as I put all the data into a single CSV file, which works but is not ideal as it requires to manipulate the data.&amp;nbsp; What does the loop do over the the monthly excel to load data into a single table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajiv.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 16:40:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356815#M493362</guid>
      <dc:creator />
      <dc:date>2012-05-17T16:40:45Z</dc:date>
    </item>
    <item>
      <title>Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356816#M493363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajiv,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes we need to load multiple excel sheets having some naming convension like&lt;/P&gt;&lt;P&gt;Mar2012, Apr2012, May2012 ... etc. We don't know the number of excel which is coming from source or every month we get data in excel having monthyear as excel name. In this scenario we do not hardcode the excel name in our Qlikview script rather than we write logic in QV script to generate this name and load the corresponding excelsheet everymonth whenever it arrives.&lt;/P&gt;&lt;P&gt;Sometimes the case is, that we get data but in a single excel having different tabs. For that also we do the same thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once we have all the names of tabs or excel sheet, We loop over them and fetch data from it in Qlikview script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this help,&lt;/P&gt;&lt;P&gt;Anosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2012 05:26:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356816#M493363</guid>
      <dc:creator />
      <dc:date>2012-05-18T05:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356817#M493364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TableName:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM \*.xls (biff, embedded labels);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2012 06:17:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356817#M493364</guid>
      <dc:creator />
      <dc:date>2012-05-18T06:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356818#M493365</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;Thanks for your help. I'm still having issues and I am not quite sure what the loop does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the script I am current using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD [Field 1],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 2],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 3],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 4]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;Z&gt;&lt;/Z&gt;&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is [Data$]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD [Field 1],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 2],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 3],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 4]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;Z&gt;&lt;/Z&gt;&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is [Data$]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The [Data$] tends to change from month to month - but I go into the excel file and rename this worksheet to "Data".&amp;nbsp; There are multiple worksheets in the file, but I only select the worksheet called "Data" to feed into QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&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;Rajiv.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2012 09:22:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356818#M493365</guid>
      <dc:creator />
      <dc:date>2012-05-24T09:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356819#M493366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajiv,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the below example of looping over start date to end date and fetching data from multiple excel sheets based on number of days between start date and end date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;SET DecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='$#,##0.00;($#,##0.00)';&lt;/P&gt;&lt;P&gt;SET TimeFormat='h:mm:ss TT';&lt;/P&gt;&lt;P&gt;SET DateFormat='DD/MM/YYYY';&lt;/P&gt;&lt;P&gt;SET TimestampFormat='MM/DD/YYYY h:mm:ss[.fff] TT';&lt;/P&gt;&lt;P&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;/P&gt;&lt;P&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Provide date range to fetch data from multiple excel sheets &lt;/P&gt;&lt;P&gt;set startDate = '01/01/2012';&lt;/P&gt;&lt;P&gt;set endDate= '01/02/2012';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let a=Interval(endDate-startDate,'d');&lt;/P&gt;&lt;P&gt;for i=0 to a;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let filename = day(Date(startDate+i))&amp;amp;' '&amp;amp;Date(Date(startDate+i),'MMMM')&amp;amp;' '&amp;amp;YEAR(Date(startDate+i))&amp;amp;' - Raw Data.xls';&lt;/P&gt;&lt;P&gt;let filefullpath = ('&lt;Z&gt;');&lt;/Z&gt;&lt;/P&gt;&lt;P&gt;LOAD [Field 1],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 2],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 3],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 4]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;$(filefullpath)&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is [Data$]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this help,&lt;/P&gt;&lt;P&gt;Anosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2012 18:13:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356819#M493366</guid>
      <dc:creator />
      <dc:date>2012-05-24T18:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356820#M493367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Anoush.&amp;nbsp; I've slightly modified the code which works for me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;SET DecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='$#,##0.00;($#,##0.00)';&lt;/P&gt;&lt;P&gt;SET TimeFormat='h:mm:ss TT';&lt;/P&gt;&lt;P&gt;SET DateFormat='DD/MM/YYYY';&lt;/P&gt;&lt;P&gt;SET TimestampFormat='MM/DD/YYYY h:mm:ss[.fff] TT';&lt;/P&gt;&lt;P&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;/P&gt;&lt;P&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Provide date range to fetch data from multiple excel sheets &lt;/P&gt;&lt;P&gt;set startDate = '01/01/2012';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endDate= addmonths(today(),-1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let a=Interval(month(endDate)-month(startDate),'m');&lt;/P&gt;&lt;P&gt;for i=0 to a;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let filename = Date(addmonths(startDate,i),'MM')&amp;amp;' '&amp;amp;Date(addmonths(startDate,i),'MMM')&amp;amp;' '&amp;amp;Year(Date(endDate))&amp;amp;' - Raw Data.xls';&lt;/P&gt;&lt;P&gt;let filefullpath = ('&lt;Z&gt;');&lt;/Z&gt;&lt;/P&gt;&lt;P&gt;LOAD [Field 1],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 2],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 3],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Field 4]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;$(filefullpath)&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is [Data$]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2012 14:33:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356820#M493367</guid>
      <dc:creator />
      <dc:date>2012-05-25T14:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356821#M493368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anoush,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This script doesn't seem to work for CSV files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e. &lt;/P&gt;&lt;P dir="ltr"&gt;FROM&lt;/P&gt;&lt;P dir="ltr"&gt;$(FileFullPath)&lt;/P&gt;&lt;P dir="ltr"&gt;(txt, codepage is 1252, embedded labels, delimiter is ',' , msq);&lt;/P&gt;&lt;P dir="ltr"&gt;&lt;/P&gt;&lt;P dir="ltr"&gt;Do I need to amend the script?&lt;/P&gt;&lt;P dir="ltr"&gt;&lt;/P&gt;&lt;P dir="ltr"&gt;Thanks.&lt;/P&gt;&lt;P dir="ltr"&gt;&lt;/P&gt;&lt;P dir="ltr"&gt;Rajiv.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2012 14:46:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356821#M493368</guid>
      <dc:creator />
      <dc:date>2012-05-30T14:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356822#M493369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Rajiv,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the below script. I think you haven't changed the file name extension from xls to csv. See the bold part in below script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let filename = day(Date(startDate+i))&amp;amp;' '&amp;amp;Date(Date(startDate+i),'MMMM')&amp;amp;' '&amp;amp;YEAR(Date(startDate+i))&amp;amp;' - Raw Data.&lt;STRONG&gt;csv&lt;/STRONG&gt;';&lt;/P&gt;&lt;P&gt;let filefullpath = ('&lt;D&gt;');&lt;/D&gt;&lt;/P&gt;&lt;P&gt;LOAD Data1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Data2&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;$(filefullpath)&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; NEXT&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;Hope this help,&lt;/P&gt;&lt;P&gt;Anosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2012 16:59:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356822#M493369</guid>
      <dc:creator />
      <dc:date>2012-05-30T16:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356823#M493370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anoush,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for getting back to me.&amp;nbsp; Yes, I amended the script in the beginning, replacing .xls with .csv and it didn't seem to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried it the above script? Does it work?&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;Rajiv.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 08:06:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356823#M493370</guid>
      <dc:creator />
      <dc:date>2012-05-31T08:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356824#M493371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Rajiv, Yes it is working for me. Can you attach your qvw explaining your scenario and some excel sheets to load data. I will try to debug it and check. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 12:14:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356824#M493371</guid>
      <dc:creator />
      <dc:date>2012-05-31T12:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Issues loading multiple Excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356825#M493372</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;For the first sheet1 i have fields&amp;nbsp; :&amp;nbsp;&amp;nbsp; field1, field2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and for sheet2 :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field3,field4 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i mean , different sheets have different fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it work with your logic??????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Satti&amp;nbsp;&amp;nbsp; &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, 12 Jun 2013 13:08:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issues-loading-multiple-Excel-files/m-p/356825#M493372</guid>
      <dc:creator />
      <dc:date>2013-06-12T13:08:45Z</dc:date>
    </item>
  </channel>
</rss>

