<?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: Adding values to a subcolumn? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Adding-values-to-a-subcolumn/m-p/2010286#M1221733</link>
    <description>&lt;P&gt;If both of these are loaded from the same source table, and they're both simple loads, why not just:&lt;/P&gt;
&lt;P&gt;Load Name1, Name2, Value&lt;/P&gt;
&lt;P&gt;From Table1;&lt;/P&gt;
&lt;P&gt;Otherwise, a straightforward JOIN should work here:&lt;/P&gt;
&lt;P&gt;Load Name1, Value&lt;/P&gt;
&lt;P&gt;From Table1;&lt;/P&gt;
&lt;P&gt;Left Join&lt;/P&gt;
&lt;P&gt;Load Name1, Name2&lt;/P&gt;
&lt;P&gt;From Table2;&lt;/P&gt;
&lt;P&gt;If these don't solve your problem, you'll likely need to do a better job of explaining the issue, as this solution should work with the scenario and sample data you described in your post.&lt;/P&gt;</description>
    <pubDate>Tue, 29 Nov 2022 10:38:48 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2022-11-29T10:38:48Z</dc:date>
    <item>
      <title>Adding values to a subcolumn?</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-values-to-a-subcolumn/m-p/2010273#M1221731</link>
      <description>&lt;P&gt;Hello all,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I have the table of type&lt;/P&gt;
&lt;P&gt;Talbe1:&lt;/P&gt;
&lt;P&gt;+--------+-------+&lt;BR /&gt;| Name1 | Value |&lt;BR /&gt;+--------+-------+&lt;BR /&gt;| A | 3 |&lt;BR /&gt;+--------+-------+&lt;BR /&gt;| B | 4 |&lt;BR /&gt;+--------+-------+&lt;/P&gt;
&lt;P&gt;and I also have a have another table that looks like&lt;/P&gt;
&lt;P&gt;Table2:&lt;/P&gt;
&lt;P&gt;+--------+-------+&lt;BR /&gt;| Name1 | Name2|&lt;BR /&gt;+--------+-------+&lt;BR /&gt;| A | A1 |&lt;BR /&gt;+--------+-------+&lt;BR /&gt;| A | A2 |&lt;BR /&gt;+--------+-------+&lt;BR /&gt;| B | B1 |&lt;BR /&gt;+--------+-------+&lt;BR /&gt;| B | B2 |&lt;BR /&gt;+--------+-------+&lt;BR /&gt;| B | B3 |&lt;BR /&gt;+--------+-------+&lt;/P&gt;
&lt;P&gt;Now I want to combine these tables in such a way, that I get&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FinalTable:&lt;/P&gt;
&lt;P&gt;+--------+-------+-------+&lt;BR /&gt;| Name1 | Value | Value |&lt;BR /&gt;+--------+-------+-------+&lt;BR /&gt;| A | A1 | 3 |&lt;BR /&gt;+--------+-------+-------+&lt;BR /&gt;| A | A2 | 3 |&lt;BR /&gt;+--------+-------+-------+&lt;BR /&gt;| B | B1 | 4 |&lt;BR /&gt;+--------+-------+-------+&lt;BR /&gt;| B | B2 | 4 |&lt;BR /&gt;+--------+-------+-------+&lt;BR /&gt;| B | B3 | 4 |&lt;BR /&gt;+--------+-------+-------+&lt;/P&gt;
&lt;P&gt;All of the tables are loaded trought standard load.&amp;nbsp;&lt;BR /&gt;Load * from Table1&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried using join, concatenate and apply map, but I've had no succes. Any tips?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 10:23:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-values-to-a-subcolumn/m-p/2010273#M1221731</guid>
      <dc:creator>Nitaci</dc:creator>
      <dc:date>2022-11-29T10:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Adding values to a subcolumn?</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-values-to-a-subcolumn/m-p/2010283#M1221732</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;If both tables has common field (Name1), in that case, its normal Qlik behavior&amp;nbsp; to get ur desired results.&lt;/P&gt;
&lt;P&gt;Not sure, how its not working, did u check the table viewer to confirm the tables are join (linked) correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 10:36:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-values-to-a-subcolumn/m-p/2010283#M1221732</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2022-11-29T10:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: Adding values to a subcolumn?</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-values-to-a-subcolumn/m-p/2010286#M1221733</link>
      <description>&lt;P&gt;If both of these are loaded from the same source table, and they're both simple loads, why not just:&lt;/P&gt;
&lt;P&gt;Load Name1, Name2, Value&lt;/P&gt;
&lt;P&gt;From Table1;&lt;/P&gt;
&lt;P&gt;Otherwise, a straightforward JOIN should work here:&lt;/P&gt;
&lt;P&gt;Load Name1, Value&lt;/P&gt;
&lt;P&gt;From Table1;&lt;/P&gt;
&lt;P&gt;Left Join&lt;/P&gt;
&lt;P&gt;Load Name1, Name2&lt;/P&gt;
&lt;P&gt;From Table2;&lt;/P&gt;
&lt;P&gt;If these don't solve your problem, you'll likely need to do a better job of explaining the issue, as this solution should work with the scenario and sample data you described in your post.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 10:38:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-values-to-a-subcolumn/m-p/2010286#M1221733</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2022-11-29T10:38:48Z</dc:date>
    </item>
  </channel>
</rss>

