<?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: How to segregate different multiple files in qliksense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-segregate-different-multiple-files-in-qliksense/m-p/128530#M9019</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gabor,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached the test files as requested&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Aug 2018 14:30:32 GMT</pubDate>
    <dc:creator>vinayvishwanath</dc:creator>
    <dc:date>2018-08-28T14:30:32Z</dc:date>
    <item>
      <title>How to segregate different multiple files in qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-segregate-different-multiple-files-in-qliksense/m-p/128528#M9017</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;i have multiple files to load in the format 201801, 201802........201812. which consists of required data in different columns eg: Budget and Forecast from 201801 to 201812.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is : how to load the data with from multiple files without changing the script (it should load the latest files as well load old files also). 2. how to create a flag or label that upon selection returns value of the corresponding month. eg: if selection is done as 201804 then it has to return the corresponding values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cumulative figures should also be available to show&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 13:48:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-segregate-different-multiple-files-in-qliksense/m-p/128528#M9017</guid>
      <dc:creator>vinayvishwanath</dc:creator>
      <dc:date>2018-08-28T13:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to segregate different multiple files in qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-segregate-different-multiple-files-in-qliksense/m-p/128529#M9018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;This is from here -&amp;nbsp; &lt;A href="https://community.qlikview.com/thread/217365" title="https://community.qlikview.com/thread/217365"&gt;Qlik Sense - Loop through Excel Files and Works... | Qlik Community&lt;/A&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Try this:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sub ReadMultipleExcel (Root)&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; For Each File in filelist (Root&amp;amp;'\*.xlsx')&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YourTable:&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load&amp;nbsp; * FROM [$(File)] (ooxml, embedded labels, table is YourSheet)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next File&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;End Sub&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Call ReadMultipleExcel ('lib://YourFiles')&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;It will loop through every xlsx file and read it's content.&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;As far as I get your state, you have same structured files, but other timestamp in filename.&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;The $(File) variable contains the filename, you can extract the date from it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;G.&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;you can loop through the files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I understand correctly the every file has a new column with the actual data, and retain the previous data as well?&lt;/P&gt;&lt;P&gt;Maybe you need only the last file right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you provide us an example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the crosstable option may help you in this case &lt;A href="https://help.qlik.com/en-US/sense/June2018/Subsystems/Hub/Content/LoadData/work-with-cross-tables.htm" title="https://help.qlik.com/en-US/sense/June2018/Subsystems/Hub/Content/LoadData/work-with-cross-tables.htm"&gt;https://help.qlik.com/en-US/sense/June2018/Subsystems/Hub/Content/LoadData/work-with-cross-tables.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;G.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 14:06:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-segregate-different-multiple-files-in-qliksense/m-p/128529#M9018</guid>
      <dc:creator>undergrinder</dc:creator>
      <dc:date>2018-08-28T14:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to segregate different multiple files in qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-segregate-different-multiple-files-in-qliksense/m-p/128530#M9019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gabor,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached the test files as requested&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 14:30:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-segregate-different-multiple-files-in-qliksense/m-p/128530#M9019</guid>
      <dc:creator>vinayvishwanath</dc:creator>
      <dc:date>2018-08-28T14:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to segregate different multiple files in qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-segregate-different-multiple-files-in-qliksense/m-p/128531#M9020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I see every file contains every column, so the looping through files solve the problem &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;G.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 14:38:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-segregate-different-multiple-files-in-qliksense/m-p/128531#M9020</guid>
      <dc:creator>undergrinder</dc:creator>
      <dc:date>2018-08-28T14:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to segregate different multiple files in qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-segregate-different-multiple-files-in-qliksense/m-p/128532#M9021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the help really appreciated. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 14:43:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-segregate-different-multiple-files-in-qliksense/m-p/128532#M9021</guid>
      <dc:creator>vinayvishwanath</dc:creator>
      <dc:date>2018-08-28T14:43:18Z</dc:date>
    </item>
  </channel>
</rss>

