<?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: NoConcatenate problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1528194#M747318</link>
    <description>&lt;P&gt;No, it will work will with Excel, too.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
    <pubDate>Wed, 09 Jan 2019 08:38:08 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2019-01-09T08:38:08Z</dc:date>
    <item>
      <title>NoConcatenate problem</title>
      <link>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1527816#M747315</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;I am trying to load two xls files with the same structure/column names. I want to load them separately to different tables. If I use statement below, the results are messed up.&lt;/P&gt;&lt;P&gt;Plus my second question is, how I f.e. create a graph and use only data from Data table? Because I'm gettin' (You have attempted to apply a numerical expression, which is not uniquely defined for the specified variable. In order to use this variable in expressiona relying on number of occurrences, please read it a second time under a new name from its primary table) statement.&lt;/P&gt;&lt;P&gt;Could you please help me? Thank you in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; Country,&lt;/P&gt;&lt;P&gt;Airport,&lt;/P&gt;&lt;P&gt;Price&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;FROM ABCD&lt;BR /&gt;&lt;BR /&gt;Data1:&lt;BR /&gt;&lt;BR /&gt;NoConcatenate&lt;BR /&gt;&lt;BR /&gt;LOAD&amp;nbsp;&amp;nbsp; Country,&lt;/P&gt;&lt;P&gt;Airport,&lt;/P&gt;&lt;P&gt;Price&lt;/P&gt;&lt;P&gt;FROM&lt;BR /&gt;EFGH;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 21:38:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1527816#M747315</guid>
      <dc:creator>Matt</dc:creator>
      <dc:date>2024-11-16T21:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: NoConcatenate problem</title>
      <link>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1527844#M747316</link>
      <description>&lt;P&gt;Usually there are quite rarely any benefits to load identically data-structures into different tables. Therefore I suggest to load them into a single table and if it's needed to differ between the tables you could add this as an additionally information, for example with: filebasename() as Source.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 14:42:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1527844#M747316</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-01-08T14:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: NoConcatenate problem</title>
      <link>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1528193#M747317</link>
      <description>&lt;P&gt;Isn't filebasename() function working only with text files?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 08:34:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1528193#M747317</guid>
      <dc:creator>Matt</dc:creator>
      <dc:date>2019-01-09T08:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: NoConcatenate problem</title>
      <link>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1528194#M747318</link>
      <description>&lt;P&gt;No, it will work will with Excel, too.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 08:38:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1528194#M747318</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-01-09T08:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: NoConcatenate problem</title>
      <link>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1528334#M747319</link>
      <description>&lt;P&gt;An experienced colleague helped me, so I will share what works solving my problem.&lt;/P&gt;&lt;P&gt;I used concatenation&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;&lt;BR /&gt;LOAD&amp;nbsp; Country,&lt;BR /&gt;&lt;BR /&gt;Airport,&lt;BR /&gt;&lt;BR /&gt;Price,&lt;BR /&gt;&lt;BR /&gt;'Table_1' as Fact&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;FROM ABCD&lt;BR /&gt;&lt;BR /&gt;Concatenate (Data)&lt;BR /&gt;&lt;BR /&gt;LOAD&amp;nbsp;&amp;nbsp; Country,&lt;BR /&gt;&lt;BR /&gt;Airport,&lt;BR /&gt;&lt;BR /&gt;Price,&lt;BR /&gt;&lt;BR /&gt;'Table_2' as Fact&lt;BR /&gt;&lt;BR /&gt;FROM&lt;BR /&gt;EFGH;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Creating graph need to use set analysis, f.e. &lt;SPAN&gt;Count({&amp;lt;Fact={'Table_2'}&amp;gt;} Airport)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 12:17:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1528334#M747319</guid>
      <dc:creator>Matt</dc:creator>
      <dc:date>2019-01-09T12:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: NoConcatenate problem</title>
      <link>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1581690#M747320</link>
      <description>&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;I came across your reply.&lt;/P&gt;&lt;P&gt;Can you teach me the best practice to load same structure files into a single dataset, please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2019 18:21:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NoConcatenate-problem/m-p/1581690#M747320</guid>
      <dc:creator>Mike_Y</dc:creator>
      <dc:date>2019-05-17T18:21:10Z</dc:date>
    </item>
  </channel>
</rss>

