<?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: Several Source files one listbox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782488#M1025238</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you 'qualify' each table. Looking at your request however, I don't see why you would not concatenate all 3 tables if they have all three the same information or the same fields. By concatenating, you won't lose any data, the program just puts all three tables together. Look at it as putting data from 3 separate excell sheets into one sheet. You won't lose any columns, your number of rows get bigger.&lt;/P&gt;&lt;P&gt;If possible, then please describe your variables in your 3 tables, and why they should keep separate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Mar 2015 13:01:22 GMT</pubDate>
    <dc:creator>puttemans</dc:creator>
    <dc:date>2015-03-11T13:01:22Z</dc:date>
    <item>
      <title>Several Source files one listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782482#M1025232</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;I have like 3&amp;nbsp; Fact tables (no join/concanate) and for each of them I have a "bla bla AS Source..", so I end up with Source A, Source B, Source C, but the content is the same and there is several choices that the user needs to choose from. &lt;/P&gt;&lt;P&gt;At the front-end I need to put them together so the user only have one listbox, "one set of content". I cannot see how the concat can help here.&lt;/P&gt;&lt;P&gt;What is the correct solution for this? and of course I am concerned that the datamodel still work.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 10:42:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782482#M1025232</guid>
      <dc:creator />
      <dc:date>2015-03-11T10:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Several Source files one listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782483#M1025233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;so I end up with Source A, Source B, Source C, but the content is the same&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Then you should concatenate those fact tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FactTable:&lt;/P&gt;&lt;P&gt;LOAD *, 'Source A' as Source FROM SourceA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate(FactTable)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;LOAD *, 'Source B' as Source FROM SourceB;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;concatenate(FactTable)&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;LOAD *, 'Source C' as Source FROM SourceC;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 10:49:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782483#M1025233</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-11T10:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Several Source files one listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782484#M1025234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If only the content of the source-variable is the same,and not the whole fact table, then you load all tables, and just rename the Source variable in all 3 with the same name, without concatenating&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 11:10:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782484#M1025234</guid>
      <dc:creator>puttemans</dc:creator>
      <dc:date>2015-03-11T11:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Several Source files one listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782485#M1025235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx but then I get loops, as they are linked via other fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 11:57:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782485#M1025235</guid>
      <dc:creator />
      <dc:date>2015-03-11T11:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Several Source files one listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782486#M1025236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx but I dont want to concatenate or join them. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 12:00:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782486#M1025236</guid>
      <dc:creator />
      <dc:date>2015-03-11T12:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Several Source files one listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782487#M1025237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do you not want to concatenate them? What is the business requirement that you think cannot be met if you do concatenate the tables?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 12:36:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782487#M1025237</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-11T12:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: Several Source files one listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782488#M1025238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you 'qualify' each table. Looking at your request however, I don't see why you would not concatenate all 3 tables if they have all three the same information or the same fields. By concatenating, you won't lose any data, the program just puts all three tables together. Look at it as putting data from 3 separate excell sheets into one sheet. You won't lose any columns, your number of rows get bigger.&lt;/P&gt;&lt;P&gt;If possible, then please describe your variables in your 3 tables, and why they should keep separate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 13:01:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782488#M1025238</guid>
      <dc:creator>puttemans</dc:creator>
      <dc:date>2015-03-11T13:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: Several Source files one listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782489#M1025239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mikael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will try like this type. &lt;/P&gt;&lt;P&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;FactTable1:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD *, &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="line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A as&amp;nbsp; Source&amp;nbsp; &lt;/SPAN&gt;&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="line-height: 1.5em;"&gt;FROM SourceA;&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;&lt;SPAN style="line-height: 1.5em;"&gt;FactTable2&lt;/SPAN&gt;&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: 13.3333330154419px; font-family: inherit;"&gt;LOAD *, &lt;/SPAN&gt;&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: 13.3333330154419px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B as Source &lt;/SPAN&gt;&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: 13.3333330154419px; font-family: inherit;"&gt;FROM SourceB;&lt;/SPAN&gt;&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: 13.3333330154419px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FactTable3&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;LOAD *, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C as Source &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;FROM SourceC;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;krish&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 14:22:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782489#M1025239</guid>
      <dc:creator />
      <dc:date>2015-03-11T14:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Several Source files one listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782490#M1025240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Too large and complex, there is a lot of other fields and data. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 15:25:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782490#M1025240</guid>
      <dc:creator />
      <dc:date>2015-03-11T15:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Several Source files one listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782491#M1025241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Concatenating fact tables is easy if they contain the same content. Other fields and data shouldn't have any effect on that. But if you think that it cannot be done then perhaps you shouldn't try at all and create three separate documents instead.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 16:53:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782491#M1025241</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-11T16:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Several Source files one listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782492#M1025242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well I know very well how to concatenate, though my first thought is always too join to avoid double data and add new fields. Why you like concatenate so much?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already have a reload time beyond 1 hour, so whether I join or concatenate, dont you think it will just make thinks worse?&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 18:10:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782492#M1025242</guid>
      <dc:creator />
      <dc:date>2015-03-11T18:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: Several Source files one listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782493#M1025243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like concatenate so much only when the tables contain the same content. I don't like making a data model any more complicated then it needs to be. If I can have one fact table instead of three the same content that sounds like a good deal to me. You could well have perfectly fine reasons to not concatenate the fact tables. I just haven't seen or heard anything concrete to tell me you do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 18:35:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Several-Source-files-one-listbox/m-p/782493#M1025243</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-11T18:35:08Z</dc:date>
    </item>
  </channel>
</rss>

