<?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: Read Multiple Tables with Different Filters &amp; Concatenate &amp; Store in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Solved/m-p/934344#M967582</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think that you need to read the dimension tables multiple times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can load these tables after the MAIN table load and then use ...WHERE EXISTS(INDICATOR); etc. or do a LEFT KEEP (MAIN) LOAD for the dimension tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Sep 2015 15:02:30 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2015-09-24T15:02:30Z</dc:date>
    <item>
      <title>Solved</title>
      <link>https://community.qlik.com/t5/QlikView/Solved/m-p/934340#M967578</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;Solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 13:34:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Solved/m-p/934340#M967578</guid>
      <dc:creator>microwin88x</dc:creator>
      <dc:date>2015-09-24T13:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Read Multiple Tables with Different Filters &amp; Concatenate &amp; Store</title>
      <link>https://community.qlik.com/t5/QlikView/Solved/m-p/934341#M967579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a key 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; INDICATOR &amp;amp; REGION &amp;amp; VERSION as KEY,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loading your Excel file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * FROM MAIN&lt;/P&gt;&lt;P&gt;WHERE EXISTS(KEY, INDICATOR &amp;amp; REGION &amp;amp; VERSION);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 13:41:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Solved/m-p/934341#M967579</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-09-24T13:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: Read Multiple Tables with Different Filters &amp; Concatenate &amp; Store</title>
      <link>https://community.qlik.com/t5/QlikView/Solved/m-p/934342#M967580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The thing is that I believe that I would need to read the tables INDICATOR, REGION and VERSION multiple times. For example for table INDICATOR, 1st time I would filter by Sales and 2nd time by Margin. Or when I use the Where Exists I would automatically filter for all combinations from the Excel?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 14:16:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Solved/m-p/934342#M967580</guid>
      <dc:creator>microwin88x</dc:creator>
      <dc:date>2015-09-24T14:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Read Multiple Tables with Different Filters &amp; Concatenate &amp; Store</title>
      <link>https://community.qlik.com/t5/QlikView/Solved/m-p/934343#M967581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understand you right, then you could do something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Filters:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD INDICATOR &amp;amp; '|' &amp;amp; REGION &amp;amp; '|' &amp;amp; VERSION As Key&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;From Filter.xlsx&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, ....);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;For i = 0 To NoOfRows('Filters')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let vKey = Peek('Key', i, 'Filters');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TStore:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NoConcatenate&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD * &lt;/EM&gt;&lt;EM&gt;Resident MAIN&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where INDICATOR &amp;amp; '|' &amp;amp; REGION &amp;amp; '|' &amp;amp; VERSION = '$(vKey)';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; STORE TStore into File_$(i).qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DROP TABLE TStore;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Next&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP Table Filters;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 14:26:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Solved/m-p/934343#M967581</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-09-24T14:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Read Multiple Tables with Different Filters &amp; Concatenate &amp; Store</title>
      <link>https://community.qlik.com/t5/QlikView/Solved/m-p/934344#M967582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think that you need to read the dimension tables multiple times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can load these tables after the MAIN table load and then use ...WHERE EXISTS(INDICATOR); etc. or do a LEFT KEEP (MAIN) LOAD for the dimension tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 15:02:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Solved/m-p/934344#M967582</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-09-24T15:02:30Z</dc:date>
    </item>
  </channel>
</rss>

