<?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 excel web embaded files in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001526#M340438</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The you should add:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ErrorMode = 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on a line before the FOR statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should prevent the load script from terminating when it encounters a read error. That way you will be able to load the remaining files. Is that what you want? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally you can use the ScriptError variable immediately after the LOAD statement to report which LOAD that lead to an error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Oct 2015 20:59:25 GMT</pubDate>
    <dc:creator>petter</dc:creator>
    <dc:date>2015-10-06T20:59:25Z</dc:date>
    <item>
      <title>Load multiple excel web embaded files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001521#M340433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyone knows how can i load multiple excel files from web directory.. I tried to use wild card.. but gave me errors..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the error is "Cannot Read BIFF file" which means one of the xls files is not actual xls file.. I have no control of the directory beside read only so any suggestion would help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example of one of the files&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'&lt;A href="http://www.ABC.com/~/media/Files/2015/Test%20data%20August%202015.xls" title="http://www.ABC.com/~/media/Files/2015/Test%20data%20August%202015.xls"&gt;http://www.ABC.com/~/media/Files/2015/Test%20data%20August%202015.xls'&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and there is a file for each month up until the previous month..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thxs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 00:02:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001521#M340433</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2015-10-06T00:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple excel web embaded files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001522#M340434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;anyone &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 20:19:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001522#M340434</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2015-10-06T20:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple excel web embaded files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001523#M340435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't use wildcards when the Excel files are read from the web via the HTTP-protocol. That only works for normal file drives or UNC paths.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you have a list of the file names you could do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR EACH &lt;STRONG&gt;webfile&lt;/STRONG&gt; IN 'January','February','March','April','May','June','July','August'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExcelData:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "h t t p : / / www.abc.com/~......../Test%20data%20&lt;STRONG&gt;$(webfile)&lt;/STRONG&gt;%202015.xls" (ooxml ....);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEXT;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 20:29:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001523#M340435</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-06T20:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple excel web embaded files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001524#M340436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="2015-10-06 #5.PNG" class="jive-image image-1" src="/legacyfs/online/101179_2015-10-06 #5.PNG" style="height: 261px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 20:30:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001524#M340436</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-06T20:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple excel web embaded files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001525#M340437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am getting an error say "Cannot read BIFF file"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 20:53:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001525#M340437</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2015-10-06T20:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple excel web embaded files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001526#M340438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The you should add:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ErrorMode = 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on a line before the FOR statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should prevent the load script from terminating when it encounters a read error. That way you will be able to load the remaining files. Is that what you want? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally you can use the ScriptError variable immediately after the LOAD statement to report which LOAD that lead to an error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 20:59:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001526#M340438</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-06T20:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple excel web embaded files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001527#M340439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you so much.. this is working as needed.. next step I have the year listed in the url.. I have files from 2014 and I am expecting files in 2016.. any idea on how I can automate the load to include data from 2014 and load 2016 data as it comes in the future through the load trigger?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 21:20:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001527#M340439</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2015-10-06T21:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple excel web embaded files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001528#M340440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will have to add an outer loop for years:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR vYear=2014 TO 2015&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FOR EACH ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(vYear)' AS SheetYear&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // if you need to add it as a field - unless the year is already a column in the xls&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "............ $(webfile)%20$(vYear).xls" (ooxml ....);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NEXT;&lt;/P&gt;&lt;P&gt;NEXT;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 21:26:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001528#M340440</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-06T21:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple excel web embaded files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001529#M340441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yup, exactly but that will not load in future data.. 2016 for example&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 21:27:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001529#M340441</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2015-10-06T21:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple excel web embaded files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001530#M340442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change it to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR vYear=2014 TO 2016&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since ErrorMode 0 will let it silently fail (I think) if it cant find the file....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 21:36:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001530#M340442</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-06T21:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple excel web embaded files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001531#M340443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I appreciate it.. i was thinking to automate it permanently but that would work.. i will do it up to 2020..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lats question I have &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to show the month and year of each file within the table. I tried&lt;/P&gt;&lt;P&gt;$(vYear) as ReportYear,&lt;/P&gt;&lt;P&gt;$(webfile) as ReportMonth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But that caused an error and returned no columns &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 22:34:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001531#M340443</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2015-10-06T22:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple excel web embaded files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001532#M340444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;$(vYear) as ReportYear,&amp;nbsp; work fine and the year column is created..&lt;/P&gt;&lt;P&gt;$(webfile) as ReportMonth, no data on the dashboard will show up and no columns are showing up if this is added..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 23:20:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-excel-web-embaded-files/m-p/1001532#M340444</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2015-10-06T23:20:05Z</dc:date>
    </item>
  </channel>
</rss>

