<?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 Load all sheets in all Excel documents in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213988#M67590</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, Sheet1 , Sheet2 .....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Nov 2011 04:25:56 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-11-15T04:25:56Z</dc:date>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213981#M67583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a number of Excel docs in a folder with naming convention of FileName_YYMMDD.&lt;/P&gt;&lt;P&gt;The problem is that the docs may contain a different number of sheets i.e. Doc1 has Sheet1/Sheet2&lt;/P&gt;&lt;P&gt;while Doc2 has Sheet1/Sheet2/Sheet3 etc.&lt;/P&gt;&lt;P&gt;I need to create a table of Doc name and Sheets belonging to that Doc.&lt;/P&gt;&lt;P&gt;Then I want to load the sheets from their associated docs in a loop statement.&lt;/P&gt;&lt;P&gt;Anyone any ideas?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 16:56:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213981#M67583</guid>
      <dc:creator>bismart</dc:creator>
      <dc:date>2011-04-12T16:56:57Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213982#M67584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might be able to do this is with a script macro. But a more elegant way would be to turn off errors by setting ErrorMode=0 and then doing a loop with the assumption that all workbooks have the number of sheets that the largest workbook has. With error reporting turned off, the script should be able to just proceed to the next load statement if a sheet is missing.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 17:11:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213982#M67584</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2011-04-12T17:11:08Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213983#M67585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anybody got some sample script I could use???&lt;/P&gt;&lt;P&gt;Cheers Vlad... but sample script would be appreciated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 18:18:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213983#M67585</guid>
      <dc:creator>bismart</dc:creator>
      <dc:date>2011-04-12T18:18:56Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213984#M67586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure, it would look something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;SET ErrorMode = 0;&lt;BR /&gt;for a=1 to 3 //in this example, 3 is the number of sheets your maximum workbook has&lt;BR /&gt; LOAD * FROM&lt;BR /&gt; *.xls (biff, embedded labels, table is Sheet$(a)$);&lt;BR /&gt;next&lt;BR /&gt;SET ErrorMode = 1;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;You can then define different table structures, etc. Or if the fields are identical across all sheets, it will autoconcatenate for you.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 18:30:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213984#M67586</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2011-04-12T18:30:28Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213985#M67587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vlad&lt;/P&gt;&lt;P&gt;Worked like a charm&lt;/P&gt;&lt;P&gt;I didn't know about the errormode setting so that got me over the problem&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 13:00:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213985#M67587</guid>
      <dc:creator>bismart</dc:creator>
      <dc:date>2011-04-13T13:00:55Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213986#M67588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vlad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have tried your above condition in my application but its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below condition i used in my script :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ErrorMode = 0;&lt;/P&gt;&lt;P&gt;for a=1 to 3&lt;/P&gt;&lt;P&gt;LOAD * FROM&lt;/P&gt;&lt;P&gt;C:\Users\napo\Desktop\Excel Data\*.xlsx (ooxml, embedded labels, table is Sheet$(a)$);&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;SET ErrorMode = 1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2011 07:25:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213986#M67588</guid>
      <dc:creator />
      <dc:date>2011-11-10T07:25:06Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213987#M67589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are the worksheets in your workbook named Sheet1, Sheet2, etc?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Nov 2011 15:09:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213987#M67589</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2011-11-14T15:09:50Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213988#M67590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, Sheet1 , Sheet2 .....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 04:25:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213988#M67590</guid>
      <dc:creator />
      <dc:date>2011-11-15T04:25:56Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213989#M67591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi antony&lt;/P&gt;&lt;P&gt; try this&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12px; color: #636363; font-family: Arial;"&gt;SET ErrorMode = 0;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12px; color: #636363; font-family: Arial;"&gt;for a=1 to 3&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12px; color: #636363; font-family: Arial;"&gt;LOAD * FROM&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12px; color: #636363; font-family: Arial;"&gt;C:\Users\napo\Desktop\Excel Data\*.xlsx (ooxml, embedded labels, table is Sheet$(a));&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12px; color: #636363; font-family: Arial;"&gt;next&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12px; color: #636363; font-family: Arial;"&gt;SET ErrorMode = 1;&lt;/P&gt;&lt;P&gt;may it helps you&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 06:17:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213989#M67591</guid>
      <dc:creator>rohit214</dc:creator>
      <dc:date>2011-11-15T06:17:40Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213990#M67592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Its working. Suppose if i am updating some data on sheet4 , how do i get Sheet4 data without touching in script part.&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;Antony.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 06:23:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213990#M67592</guid>
      <dc:creator />
      <dc:date>2011-11-15T06:23:01Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213991#M67593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then u have to change a=1 to 4 &lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 06:29:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213991#M67593</guid>
      <dc:creator>rohit214</dc:creator>
      <dc:date>2011-11-15T06:29:18Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213992#M67594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want automatically,without changing in script. How do i do ???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 06:41:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213992#M67594</guid>
      <dc:creator />
      <dc:date>2011-11-15T06:41:40Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213993#M67595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to load all the sheets from all excel files in a folder, the below code should do the work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us assume that the folder is "C:\temp" and you need to load all the sheets from each of these files. The script is below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each File in filelist ('C:\Temp\*.xls')&lt;/P&gt;&lt;P&gt;&amp;nbsp; ODBC CONNECT TO [Excel Files;DBQ=$(File)];&lt;/P&gt;&lt;P&gt;&amp;nbsp; tables:&lt;/P&gt;&lt;P&gt;&amp;nbsp; SQLTables;&lt;/P&gt;&lt;P&gt;&amp;nbsp; DISCONNECT;&lt;/P&gt;&lt;P&gt;&amp;nbsp; FOR i = 0 to NoOfRows('tables')-1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET sheetName = purgeChar(peek('TABLE_NAME', i, 'tables'), chr(39));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD * FROM $(File) (biff, embedded labels, table is $(sheetName)) where right('$(sheetName)',1) = '$';&lt;/P&gt;&lt;P&gt;&amp;nbsp; NEXT&lt;/P&gt;&lt;P&gt;&amp;nbsp; DROP Table tables;&lt;/P&gt;&lt;P&gt;next File&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know whether this works for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sajeevan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 08:33:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213993#M67595</guid>
      <dc:creator />
      <dc:date>2011-11-15T08:33:47Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213994#M67596</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;&lt;/P&gt;&lt;P&gt; im using 'xlsx' format then how do i that ???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 10:18:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213994#M67596</guid>
      <dc:creator />
      <dc:date>2011-11-15T10:18:49Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213995#M67597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sajeevan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I did, its working perfectly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Antony.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 10:42:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213995#M67597</guid>
      <dc:creator />
      <dc:date>2011-11-15T10:42:01Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213996#M67598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Antony,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did it work on "xlsx" or "xls" format? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it was on "xlsx" what changes did you make to the script? Please share this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sajeevan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 10:44:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213996#M67598</guid>
      <dc:creator />
      <dc:date>2011-11-15T10:44:21Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213997#M67599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sajeevan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have one query, if i want to load latest excel file in my application then how do i do ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data_Sep.xlsx;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data_Oct.xlsx;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data_Nov.xlsx;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to load Data_Nov.xlsx, if it is Dec month then it should load Data_Dec.xlsx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Antony.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 10:51:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213997#M67599</guid>
      <dc:creator />
      <dc:date>2011-11-15T10:51:29Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213998#M67600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi saleevan&lt;/P&gt;&lt;P&gt;your code working fine but i am not able to understand&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; sheetName = purgeChar(peek('TABLE_NAME', i, 'tables')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;why you use this&lt;/P&gt;&lt;P&gt;can&amp;nbsp; you please explain this in detail..&lt;/P&gt;&lt;P&gt;or is there any other solution for that line so i can use in place of that&lt;/P&gt;&lt;P&gt;thanks &amp;amp;regards &lt;/P&gt;&lt;P&gt;rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 12:41:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213998#M67600</guid>
      <dc:creator>rohit214</dc:creator>
      <dc:date>2011-11-15T12:41:23Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213999#M67601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PurgeChar will delete the unwanted characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peek will return the fieldvalue from TABLE_NAME field in table call 'tables'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can always refer to the help file to understand these better.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why are you insisting that you want to use another solution - is there a reason?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;S A J E E V A N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 13:04:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/213999#M67601</guid>
      <dc:creator />
      <dc:date>2011-11-15T13:04:11Z</dc:date>
    </item>
    <item>
      <title>Load all sheets in all Excel documents</title>
      <link>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/214000#M67602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&amp;nbsp; sjeevan&lt;/P&gt;&lt;P&gt;thak you for explainig me all those thing&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2011 06:09:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-all-sheets-in-all-Excel-documents/m-p/214000#M67602</guid>
      <dc:creator>rohit214</dc:creator>
      <dc:date>2011-11-16T06:09:37Z</dc:date>
    </item>
  </channel>
</rss>

