<?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: Reload automatically on a changing filename in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610499#M225346</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your answer is exactly what I asked for but I have another issue the real name is:&lt;BR /&gt;"20140204_two_201402051420114745.csv" (the last numbers can be assimilated as randomised) I pretentiously thought I could used your answer and modify it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;" Let vFile = date(today()-1, 'YYYYMMDD') &amp;amp; '_two' &lt;STRONG&gt;&amp;amp; '*.csv';&lt;/STRONG&gt; "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to use the star without the quotes, with a "\", or after the FROM but each time I failed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Feb 2014 14:43:46 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-02-05T14:43:46Z</dc:date>
    <item>
      <title>Reload automatically on a changing filename</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610493#M225340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I'm new on this community and therefore my question may have been already asked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The application I'm developping requires to reload automatically a file with a name that change every day. : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Today the filename would be: "20140205_two.csv", tomorrow it will be "20140206_two.csv" as you can see the name in depending on the date. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script that I want to include should reload the correct file depending on the current day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 13:26:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610493#M225340</guid>
      <dc:creator />
      <dc:date>2014-02-05T13:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Reload automatically on a changing filename</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610494#M225341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of file name you can write "*_two.csv"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 13:28:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610494#M225341</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-02-05T13:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: Reload automatically on a changing filename</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610495#M225342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the following syntax :&lt;/P&gt;&lt;P&gt;for each file in filelist(????????_two.csv)&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;from $(file)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please check syntax, this is just an example&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 13:29:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610495#M225342</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2014-02-05T13:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: Reload automatically on a changing filename</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610496#M225343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let vFile = date(today(), 'YYYYMMDD') &amp;amp; '_two.csv';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YourTable:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM $(vFile);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 13:30:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610496#M225343</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-02-05T13:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Reload automatically on a changing filename</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610497#M225344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Example Given Below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Column1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Column2&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 13:30:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610497#M225344</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-02-05T13:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Reload automatically on a changing filename</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610498#M225345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please use like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;abc,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;def&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[C:\Documents and Settings\Ashwani\Desktop\2014*.csv&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;See i have used&amp;nbsp; ' *'&amp;nbsp; due to this qv will load all the csv files starting with 2014. Now date change does not impact you.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If it not works then please let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 13:35:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610498#M225345</guid>
      <dc:creator>ashwanin</dc:creator>
      <dc:date>2014-02-05T13:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Reload automatically on a changing filename</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610499#M225346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your answer is exactly what I asked for but I have another issue the real name is:&lt;BR /&gt;"20140204_two_201402051420114745.csv" (the last numbers can be assimilated as randomised) I pretentiously thought I could used your answer and modify it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;" Let vFile = date(today()-1, 'YYYYMMDD') &amp;amp; '_two' &lt;STRONG&gt;&amp;amp; '*.csv';&lt;/STRONG&gt; "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to use the star without the quotes, with a "\", or after the FROM but each time I failed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 14:43:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610499#M225346</guid>
      <dc:creator />
      <dc:date>2014-02-05T14:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Reload automatically on a changing filename</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610500#M225347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like this:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Let vFile = date(today(), 'YYYYMMDD') &amp;amp; '_two_';&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;YourTable:&lt;/P&gt;
&lt;P&gt;LOAD *&lt;/P&gt;
&lt;P&gt;FROM $(vFile)*.csv;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 14:51:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610500#M225347</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-02-05T14:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Reload automatically on a changing filename</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610501#M225348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much!&lt;BR /&gt; It exactly what I was looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 15:02:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610501#M225348</guid>
      <dc:creator />
      <dc:date>2014-02-05T15:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Reload automatically on a changing filename</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610502#M225349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm glad it works for you! &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, 05 Feb 2014 15:06:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-automatically-on-a-changing-filename/m-p/610502#M225349</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-02-05T15:06:27Z</dc:date>
    </item>
  </channel>
</rss>

