<?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 Loading Excel file with data in Qlikview automatically in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439195#M163655</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have developed a qlikview app where in the data is in excel files for each month. Excel file of each month is loaded in the app seperately. &lt;/P&gt;&lt;P&gt;Is there a way the app pulls the new excel file that is generated each month when the excel file is dumped in the server?. I heard that there is a code that goes into the load script using a WILDCARD function. Not sure if its true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only other solution is to manually load the new excel file of that month into Qlikview app which is not what I am looking for. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I get some help on this please. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Koushik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Jan 2013 10:10:35 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-01-21T10:10:35Z</dc:date>
    <item>
      <title>Loading Excel file with data in Qlikview automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439195#M163655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have developed a qlikview app where in the data is in excel files for each month. Excel file of each month is loaded in the app seperately. &lt;/P&gt;&lt;P&gt;Is there a way the app pulls the new excel file that is generated each month when the excel file is dumped in the server?. I heard that there is a code that goes into the load script using a WILDCARD function. Not sure if its true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only other solution is to manually load the new excel file of that month into Qlikview app which is not what I am looking for. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I get some help on this please. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Koushik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 10:10:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439195#M163655</guid>
      <dc:creator />
      <dc:date>2013-01-21T10:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Excel file with data in Qlikview automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439196#M163656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it should be possible to load the different files using a wildcard in the file name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you excel files have same structure, say two fields FIELDA, FIELDB, and your files are named like DATA_201212, &lt;/P&gt;&lt;P&gt;then you would load 1 file like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELDA,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELDB&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[DATA_201212.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Sheet1$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use a wildcard (asterisk) to load all excel files matching the file name in the working directory:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELDA,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELDB&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[DATA_*.xls]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Sheet1$);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 11:15:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439196#M163656</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-01-21T11:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Excel file with data in Qlikview automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439197#M163657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The structure is the same but the names are different. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: In the app. I got the excel data from jan to dec 2011 and they are named as Data_Jan_2011 , Data_feb_2011 and so on. I have loaded them seperately. I cant merge all of them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 11:54:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439197#M163657</guid>
      <dc:creator />
      <dc:date>2013-01-21T11:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Excel file with data in Qlikview automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439198#M163658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Data*.xls]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as file name in your LOAD statement? I am not sure what you mean with: I can't merge all of them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 13:05:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439198#M163658</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-01-21T13:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Excel file with data in Qlikview automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439199#M163659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Swuehl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I meant was. The data is in seperate excel sheets for each month with file names Data_jan_2011, Data_Feb_2011 untill December and have loaded them individually rather than merging all the excel files into one and loading it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 13:20:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439199#M163659</guid>
      <dc:creator />
      <dc:date>2013-01-21T13:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Excel file with data in Qlikview automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439200#M163660</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;You may try a loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare a variable like&lt;/P&gt;&lt;P&gt;ShName = 'jan_2011', 'feb-2011'....&amp;nbsp; (you can even do it autimatically with month and year based from a start to an end, that makes it automatocally dynamic).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then create a loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR EACH v IN ShName&lt;/P&gt;&lt;P&gt;DO&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; ...... FROM&amp;nbsp; YourFile.xls (biff, embedded labels, table is $(v)$;&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 13:59:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439200#M163660</guid>
      <dc:creator />
      <dc:date>2013-01-21T13:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Excel file with data in Qlikview automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439201#M163661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;[Data*.xls] will work perfectly even if u have separate excel file with the naming convention u have specified.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jan 2013 18:07:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Excel-file-with-data-in-Qlikview-automatically/m-p/439201#M163661</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2013-01-22T18:07:47Z</dc:date>
    </item>
  </channel>
</rss>

