<?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 Multiple File reading in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Multiple-File-reading/m-p/198175#M711996</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a scenario , would like to know the best practice.&lt;/P&gt;&lt;P&gt;I have a folder which is input folder for QV . There everyday new excel files are dropped from other application. QV should refresh its dashboards with new input excel files everyday. The input files to QV having names appended with date but data format is same.&lt;/P&gt;&lt;P&gt;How the data loading should be so that loading is proper with minimal change in QV application?&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Dec 2010 12:55:07 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-12-17T12:55:07Z</dc:date>
    <item>
      <title>Multiple File reading</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-File-reading/m-p/198175#M711996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a scenario , would like to know the best practice.&lt;/P&gt;&lt;P&gt;I have a folder which is input folder for QV . There everyday new excel files are dropped from other application. QV should refresh its dashboards with new input excel files everyday. The input files to QV having names appended with date but data format is same.&lt;/P&gt;&lt;P&gt;How the data loading should be so that loading is proper with minimal change in QV application?&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Dec 2010 12:55:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-File-reading/m-p/198175#M711996</guid>
      <dc:creator />
      <dc:date>2010-12-17T12:55:07Z</dc:date>
    </item>
    <item>
      <title>Multiple File reading</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-File-reading/m-p/198176#M711997</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;This is for csv-file&lt;/P&gt;&lt;P&gt;so change the .csv to .xls&lt;/P&gt;&lt;P&gt;and (ansi, txt, delimiter is ';', embedded labels, msq)&lt;/P&gt;&lt;P&gt;SUB doDir(dir)&lt;/P&gt;&lt;P&gt;FOR EACH file in filelist('$(dir)\*.csv')&lt;BR /&gt; LET vBasename = subfield( subfield('$(file)', '\', -1), '.', 1);&lt;BR /&gt; filelist:&lt;BR /&gt; LOAD '$(vBasename)' as basename,&lt;BR /&gt; '$(file)' as file&lt;BR /&gt; AUTOGENERATE 1&lt;BR /&gt; ;&lt;BR /&gt; NEXT&lt;BR /&gt;END SUB&lt;/P&gt;&lt;P&gt;CALL doDir('C:\Dir')&lt;/P&gt;&lt;P&gt;// Each file represents a table.&lt;BR /&gt;if fieldvaluecount('basename')&amp;gt;0 then&lt;BR /&gt;FOR i = 1 to fieldvaluecount('basename')&lt;BR /&gt;TableSE:&lt;BR /&gt; LET vBasename = fieldvalue('basename', i);&lt;BR /&gt; LET file = fieldvalue('file', i);&lt;BR /&gt;&lt;BR /&gt; LOAD&lt;BR /&gt; Dealer,&lt;BR /&gt; SALES_PERSON_NR,&lt;BR /&gt; OPTION_TYPE&lt;BR /&gt; from [$(file)] (ansi, txt, delimiter is ';', embedded labels, msq);&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;P&gt;drop table filelist;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Dec 2010 13:55:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-File-reading/m-p/198176#M711997</guid>
      <dc:creator />
      <dc:date>2010-12-17T13:55:45Z</dc:date>
    </item>
    <item>
      <title>Multiple File reading</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-File-reading/m-p/198177#M711998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply . Need few more suggestion. If in a folder everyday QV expects new files with in same format with daily records. Now after one year we might require to have Qtrly as well as yearly.&lt;/P&gt;&lt;P&gt;Hence what should be correct startegy for file handling. My plan is each day read daily record and conctenate of data in qvd file after reading archive the file nto different folder. When we run qtrly or yearly trend load the data from .qvd files. Please suggest if there is any better approach.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Dec 2010 07:32:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-File-reading/m-p/198177#M711998</guid>
      <dc:creator />
      <dc:date>2010-12-20T07:32:52Z</dc:date>
    </item>
    <item>
      <title>Multiple File reading</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-File-reading/m-p/198178#M711999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you are in right way for solution of this issue. you can make qvd and quarterly and yearly data you can easily extract from qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 14:43:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-File-reading/m-p/198178#M711999</guid>
      <dc:creator>suniljain</dc:creator>
      <dc:date>2011-01-06T14:43:34Z</dc:date>
    </item>
  </channel>
</rss>

