<?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: How to Restrict some files while loading into qlikview based on File Extensions in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-Restrict-some-files-while-loading-into-qlikview-based-on/m-p/548843#M205048</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Man then only add those extension in where clause which you want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Oct 2013 11:42:06 GMT</pubDate>
    <dc:creator>sujeetsingh</dc:creator>
    <dc:date>2013-10-30T11:42:06Z</dc:date>
    <item>
      <title>How to Restrict some files while loading into qlikview based on File Extensions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Restrict-some-files-while-loading-into-qlikview-based-on/m-p/548840#M205045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I have a column that having Filenames. My issue is when i load that field into qlikview, i want to restrict some files based on the file extensions(eg: .jpg, .jpeg..). How can i do this? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me on this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 10:57:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Restrict-some-files-while-loading-into-qlikview-based-on/m-p/548840#M205045</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-30T10:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to Restrict some files while loading into qlikview based on File Extensions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Restrict-some-files-while-loading-into-qlikview-based-on/m-p/548841#M205046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe using a WHERE clause with a match condition:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Filenames&lt;/P&gt;&lt;P&gt;FROM Table.xls WHERE match(right(Filenames,4),'.jpg','jpeg','.png');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;..WHERE match(subfield(Filenames,'.',-1),'jpg','jpeg','png');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 11:04:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Restrict-some-files-while-loading-into-qlikview-based-on/m-p/548841#M205046</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-10-30T11:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to Restrict some files while loading into qlikview based on File Extensions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Restrict-some-files-while-loading-into-qlikview-based-on/m-p/548842#M205047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here you are loading the files based on extensions, but i want to restrict those files into qlikview&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 11:38:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Restrict-some-files-while-loading-into-qlikview-based-on/m-p/548842#M205047</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-30T11:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to Restrict some files while loading into qlikview based on File Extensions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Restrict-some-files-while-loading-into-qlikview-based-on/m-p/548843#M205048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Man then only add those extension in where clause which you want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 11:42:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Restrict-some-files-while-loading-into-qlikview-based-on/m-p/548843#M205048</guid>
      <dc:creator>sujeetsingh</dc:creator>
      <dc:date>2013-10-30T11:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to Restrict some files while loading into qlikview based on File Extensions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Restrict-some-files-while-loading-into-qlikview-based-on/m-p/548844#M205049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use SubField function there. I am including a sample code that may help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMG_LOAD:&lt;/P&gt;&lt;P&gt;LOAD ID, FILE_NAME INLINE [&lt;/P&gt;&lt;P&gt;ID, FILE_NAME&lt;/P&gt;&lt;P&gt;2, test.jpg&lt;/P&gt;&lt;P&gt;3, test.jpeg&lt;/P&gt;&lt;P&gt;4, no.png&lt;/P&gt;&lt;P&gt;5, yes.png&lt;/P&gt;&lt;P&gt;6, khan.bmp&lt;/P&gt;&lt;P&gt;7, key.jpg&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;where match(SubField(FILE_NAME, '.', -1),'jpg');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And for not loading some file name with extension you can use below WHERE clause:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where if(match(SubField(FILE_NAME, '.', -1),'jpg','jpeg'),0,1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It'll load the records which contain neither jpg nor jpeg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 11:54:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Restrict-some-files-while-loading-into-qlikview-based-on/m-p/548844#M205049</guid>
      <dc:creator />
      <dc:date>2013-10-30T11:54:37Z</dc:date>
    </item>
  </channel>
</rss>

