<?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 equally named excelfile from different subfolders qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-equally-named-excelfile-from-different-subfolders/m-p/1554752#M744837</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm struggeling with the following scenario:&lt;/P&gt;&lt;P&gt;I have a main folder containing 70 different subfolders. In each of these subfolders there is a folder named Metadata. The metadata folder contains an excelfile named Mapping.xlsm.&lt;/P&gt;&lt;P&gt;Is there a way to loop through this hierarchy of folders and reading the Mapping.xlsm excel from each and everyone of them?&lt;/P&gt;&lt;P&gt;The first thing that came to me was to try to use For each File in filelist and then specify the main folder in the filelist. Should I then invoke another for each file in filelist to go through the hierarchy of the subfolders?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Subfolders_1.png" style="width: 797px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7689i70E6268005B64626/image-size/large?v=v2&amp;amp;px=999" role="button" title="Subfolders_1.png" alt="Subfolders_1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Subfolders_2.png" style="width: 771px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7688i939A7CD4B7B4BF7E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Subfolders_2.png" alt="Subfolders_2.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Subfolders_3.png" style="width: 475px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7687iBCC9D0B3967C4112/image-size/large?v=v2&amp;amp;px=999" role="button" title="Subfolders_3.png" alt="Subfolders_3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 21:16:24 GMT</pubDate>
    <dc:creator>jokamoelv227</dc:creator>
    <dc:date>2024-11-16T21:16:24Z</dc:date>
    <item>
      <title>Loading equally named excelfile from different subfolders qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-equally-named-excelfile-from-different-subfolders/m-p/1554752#M744837</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm struggeling with the following scenario:&lt;/P&gt;&lt;P&gt;I have a main folder containing 70 different subfolders. In each of these subfolders there is a folder named Metadata. The metadata folder contains an excelfile named Mapping.xlsm.&lt;/P&gt;&lt;P&gt;Is there a way to loop through this hierarchy of folders and reading the Mapping.xlsm excel from each and everyone of them?&lt;/P&gt;&lt;P&gt;The first thing that came to me was to try to use For each File in filelist and then specify the main folder in the filelist. Should I then invoke another for each file in filelist to go through the hierarchy of the subfolders?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Subfolders_1.png" style="width: 797px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7689i70E6268005B64626/image-size/large?v=v2&amp;amp;px=999" role="button" title="Subfolders_1.png" alt="Subfolders_1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Subfolders_2.png" style="width: 771px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7688i939A7CD4B7B4BF7E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Subfolders_2.png" alt="Subfolders_2.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Subfolders_3.png" style="width: 475px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7687iBCC9D0B3967C4112/image-size/large?v=v2&amp;amp;px=999" role="button" title="Subfolders_3.png" alt="Subfolders_3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 21:16:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-equally-named-excelfile-from-different-subfolders/m-p/1554752#M744837</guid>
      <dc:creator>jokamoelv227</dc:creator>
      <dc:date>2024-11-16T21:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Loading equally named excelfile from different subfolders qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-equally-named-excelfile-from-different-subfolders/m-p/1554892#M744838</link>
      <description>Here you have a posiible solutios, it's dependens how you named each file:&lt;BR /&gt;FOR i=01 to 12&lt;BR /&gt;Table:&lt;BR /&gt;LOAD *&lt;BR /&gt;FROM $(Data)yourxlsm_$(i).csv(txt, utf8, embedded labels, delimiter is ',', msq);&lt;BR /&gt;NEXT i&lt;BR /&gt;this scrip in my case reload csv files from the diferents months (jan-Dec).&lt;BR /&gt;&lt;BR /&gt;Let me know if help you this way, if not please share a picture of how the files are named and what is your expected result</description>
      <pubDate>Mon, 11 Mar 2019 14:11:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-equally-named-excelfile-from-different-subfolders/m-p/1554892#M744838</guid>
      <dc:creator>tincholiver</dc:creator>
      <dc:date>2019-03-11T14:11:50Z</dc:date>
    </item>
  </channel>
</rss>

