<?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 Load files from folder with exceptions in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101033#M634356</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 want to read all files from a folder, except one file (named AdType.qvd).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First I used the following statement to make sure that loading all file works. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;set pathQVDs = '..\QVDsTest\';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;for each File in filelist(pathQVDs&amp;amp; '*.qvd')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp; load * from [$(File)] (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;next File;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ThenI tried to include an if condition so that all files except AdType.qvd are loaded. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 13.3333px; line-height: 1.5em;"&gt;set pathQVDs = '..\QVDsTest\';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;for each File in filelist(pathQVDs&amp;amp; '*.qvd')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp; if FileName('$(File)') &amp;lt;&amp;gt; 'AdType.qvd' then&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp; load * from [$(File)] (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;next File;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still, ALL files are loaded (including AdType.qvd).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tested &lt;/P&gt;&lt;P&gt;if FileSize(vFile) &amp;gt; 500000 &lt;/P&gt;&lt;P&gt;to make sure that the if clause is correct. It worked. So I assume that I do not state the FileName correct. &lt;SPAN style="font-size: 13.3333px;"&gt;I tried several things (I used FileBaseName, FilePath) but couldn't manage to get the syntax right.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions? Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nigel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 May 2016 08:43:28 GMT</pubDate>
    <dc:creator>nigel987</dc:creator>
    <dc:date>2016-05-09T08:43:28Z</dc:date>
    <item>
      <title>Load files from folder with exceptions</title>
      <link>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101033#M634356</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 want to read all files from a folder, except one file (named AdType.qvd).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First I used the following statement to make sure that loading all file works. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;set pathQVDs = '..\QVDsTest\';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;for each File in filelist(pathQVDs&amp;amp; '*.qvd')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp; load * from [$(File)] (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;next File;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ThenI tried to include an if condition so that all files except AdType.qvd are loaded. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 13.3333px; line-height: 1.5em;"&gt;set pathQVDs = '..\QVDsTest\';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;for each File in filelist(pathQVDs&amp;amp; '*.qvd')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp; if FileName('$(File)') &amp;lt;&amp;gt; 'AdType.qvd' then&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp; load * from [$(File)] (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;next File;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still, ALL files are loaded (including AdType.qvd).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tested &lt;/P&gt;&lt;P&gt;if FileSize(vFile) &amp;gt; 500000 &lt;/P&gt;&lt;P&gt;to make sure that the if clause is correct. It worked. So I assume that I do not state the FileName correct. &lt;SPAN style="font-size: 13.3333px;"&gt;I tried several things (I used FileBaseName, FilePath) but couldn't manage to get the syntax right.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions? Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nigel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2016 08:43:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101033#M634356</guid>
      <dc:creator>nigel987</dc:creator>
      <dc:date>2016-05-09T08:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Load files from folder with exceptions</title>
      <link>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101034#M634357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FileName() will only return a value during the loading of a file (e.g. when a LOAD statement has the file open). It doesn't take any parameters. See the QV Desktop Help article on FileName().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since inside the loop, variable File will already contain the full path to the current file, you can easily check for the base file name using the SubField() function. Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;IF (SubField(File, '\', -1) &amp;lt;&amp;gt; 'AdType.qvd') THEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2016 08:51:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101034#M634357</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-05-09T08:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Load files from folder with exceptions</title>
      <link>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101035#M634358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set pathQVDs = '..\folder\';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each File in filelist(pathQVDs&amp;amp; '*.qvd')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; let fis_compar=subfield(File,'\',-1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if '$(fis_compar)' &amp;lt;&amp;gt; 'aa2.qvd' then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; load *,'$(File)' as fis from [$(File)] (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next File;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2016 08:54:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101035#M634358</guid>
      <dc:creator>florentina_doga</dc:creator>
      <dc:date>2016-05-09T08:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Load files from folder with exceptions</title>
      <link>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101036#M634359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the explanation Peter!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the following and it worked!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each File in filelist(pathQVDs&amp;amp; '*.qvd')&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (SubField(File, '\', -1) &amp;lt;&amp;gt; 'AdType.qvd') then&lt;/P&gt;&lt;P&gt;&amp;nbsp; load * from [$(File)] (qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if;&lt;/P&gt;&lt;P&gt;next File;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2016 08:54:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101036#M634359</guid>
      <dc:creator>nigel987</dc:creator>
      <dc:date>2016-05-09T08:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: Load files from folder with exceptions</title>
      <link>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101037#M634360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like below,&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 style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: calibri, verdana, arial, sans-serif;"&gt;set pathQVDs = '..\QVDsTest\';&lt;/SPAN&gt;&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 style="font-weight: inherit; font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;for each File in filelist(pathQVDs&amp;amp; '*.qvd')&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 style="font-weight: inherit; font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp; if Not Wildmatch('$(File)',&amp;nbsp; '*AdType.qvd') then&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 style="font-weight: inherit; font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp; load * from [$(File)] (qvd);&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 style="font-weight: inherit; font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if;&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 style="font-weight: inherit; font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;next File;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2016 08:57:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101037#M634360</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-05-09T08:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Load files from folder with exceptions</title>
      <link>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101038#M634361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tested it and this works too!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2016 08:59:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101038#M634361</guid>
      <dc:creator>nigel987</dc:creator>
      <dc:date>2016-05-09T08:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Load files from folder with exceptions</title>
      <link>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101039#M634362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;try this&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG style="color: #3d3d3d; font-size: 13px; font-family: calibri, verdana, arial, sans-serif;"&gt;LET pathQVDs = '..\QVDsTest\';&lt;/STRONG&gt;&lt;/EM&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;for each vFile in filelist('$(pathQVDs)*.qvd')&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Files:&lt;BR /&gt;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt; subfield('$(&lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif; font-size: 13px;"&gt;vFile&lt;/SPAN&gt;)','\',-1) as FileName&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;next &lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif; font-size: 13px;"&gt;vFile&lt;/SPAN&gt;;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;FileNames:&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;noconcatenate&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;LOAD &lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif; font-size: 13px;"&gt;FileName&lt;/SPAN&gt;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style=": ; color: #3d3d3d; font-size: 13px; font-family: calibri, verdana, arial, sans-serif;"&gt;Resident &lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif; font-size: 13px;"&gt;Files&lt;/SPAN&gt;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style=": ; color: #3d3d3d; font-size: 13px; font-family: calibri, verdana, arial, sans-serif;"&gt;where lower(&lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif; font-size: 13px;"&gt;FileName)&amp;lt;&amp;gt;'adtype&lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif; font-size: 13px;"&gt;.qvd&lt;/SPAN&gt;';&lt;/SPAN&gt;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;drop table Files;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Data:&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;LOAD 1 as Junk&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Autogenerate 1;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;for i=1 to fieldvaluecount('&lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif; font-size: 13px;"&gt;FileName&lt;/SPAN&gt;')&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;let vFileName = fieldvalue('&lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif; font-size: 13px;"&gt;FileName&lt;/SPAN&gt;','$(i)');&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;concatenate(Data)&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;LOAD *&lt;/STRONG&gt;&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;EM&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;FROM $(&lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif; font-size: 13px;"&gt;pathQVDs&lt;/SPAN&gt;) $(&lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif; font-size: 13px;"&gt;vFileName) (qvd);&lt;/SPAN&gt;&lt;/STRONG&gt;&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: calibri, verdana, arial, sans-serif;"&gt;&lt;BR /&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;&lt;STRONG style="font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;NEXT i&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: calibri, verdana, arial, sans-serif;"&gt;&lt;BR /&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;&lt;STRONG style="font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;drop field Junk;&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: calibri, verdana, arial, sans-serif;"&gt;&lt;BR /&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;&lt;STRONG style="font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;Store Data into Path\Final.qvd;&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: calibri, verdana, arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2016 09:01:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101039#M634362</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-05-09T09:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Load files from folder with exceptions</title>
      <link>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101040#M634363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kushal, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already tried the solutions above and that worked fine for me. Thanks for the comment though!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2016 10:54:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-files-from-folder-with-exceptions/m-p/1101040#M634363</guid>
      <dc:creator>nigel987</dc:creator>
      <dc:date>2016-05-09T10:54:20Z</dc:date>
    </item>
  </channel>
</rss>

