<?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 File with format in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/File-with-format/m-p/1365689#M417998</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I have list of Qvd in the format Sale_201603.qvd ,Sale_201709.qvd and Sale_UAT_201702.qvd ,Sale_201709-Copy.qvd and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can pick all the files with Sale_YYYYMM format only&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 May 2017 08:36:17 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-05-18T08:36:17Z</dc:date>
    <item>
      <title>File with format</title>
      <link>https://community.qlik.com/t5/QlikView/File-with-format/m-p/1365689#M417998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I have list of Qvd in the format Sale_201603.qvd ,Sale_201709.qvd and Sale_UAT_201702.qvd ,Sale_201709-Copy.qvd and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can pick all the files with Sale_YYYYMM format only&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 May 2017 08:36:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/File-with-format/m-p/1365689#M417998</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-18T08:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: File with format</title>
      <link>https://community.qlik.com/t5/QlikView/File-with-format/m-p/1365690#M417999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think &lt;EM&gt;From path\Sale_2*&lt;/EM&gt; might work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 May 2017 09:03:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/File-with-format/m-p/1365690#M417999</guid>
      <dc:creator>MindaugasBacius</dc:creator>
      <dc:date>2017-05-18T09:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: File with format</title>
      <link>https://community.qlik.com/t5/QlikView/File-with-format/m-p/1365691#M418000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Try like this &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Path\Sale_*.QVD will load all the files which starts with Sales_ &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;or &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;EM style="font-size: 13.3333px;"&gt;Path\Sale_2*.QVD&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 May 2017 09:08:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/File-with-format/m-p/1365691#M418000</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2017-05-18T09:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: File with format</title>
      <link>https://community.qlik.com/t5/QlikView/File-with-format/m-p/1365692#M418001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Path\Sale_??????.QVD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or test explicitly for numeric values in the YYYYMM portion:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;For Each vFile in FileList('Path\Sale_*.qvd')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; Let vTestStr = TextBetween(vFile, '\Sale_', '.qvd');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; Let vTest = IsNum(vTestStr) and Len(vTestStr) = 6;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; if vTest Then&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD *&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM [$(vFile)]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (....)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; End If&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Next&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 May 2017 09:18:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/File-with-format/m-p/1365692#M418001</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2017-05-18T09:18:41Z</dc:date>
    </item>
  </channel>
</rss>

