<?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: Populate Table Dinamically in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Populate-Table-Dinamically/m-p/993934#M338385</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Maxgro! It works like a charm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Marcel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Nov 2015 09:14:23 GMT</pubDate>
    <dc:creator>marcel_olmo</dc:creator>
    <dc:date>2015-11-16T09:14:23Z</dc:date>
    <item>
      <title>Populate Table Dinamically</title>
      <link>https://community.qlik.com/t5/QlikView/Populate-Table-Dinamically/m-p/993932#M338383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table like this :&lt;/P&gt;&lt;P&gt;&lt;IMG alt="FactTab.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/105449_FactTab.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;A list of possible SubGroups like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Subgroup.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/105450_Subgroup.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I'd like to populate the blank fields of the Subgroup Column with the possible Subgroup values not populated before (blank means all possible values except the ones that were previously populated). This is my desired result :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="DesiredResult.png" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/105451_DesiredResult.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do it with Qlik? Anyone can give me some help with that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've attached an example here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Marcel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 13:53:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Populate-Table-Dinamically/m-p/993932#M338383</guid>
      <dc:creator>marcel_olmo</dc:creator>
      <dc:date>2015-11-13T13:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Populate Table Dinamically</title>
      <link>https://community.qlik.com/t5/QlikView/Populate-Table-Dinamically/m-p/993933#M338384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/105464_1.png" style="height: auto; width: auto;" /&gt;&lt;BR /&gt;&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;Tmp:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load distinct Year, Month, Group, Reference&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM Example.xlsx (ooxml, embedded labels, table is Hoja1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;join(Tmp)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD SubGroup&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM Example.xlsx (ooxml, embedded labels, table is Hoja2);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;left join (Tmp) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load Year, Month, Group, Reference, SubGroup, Amount&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM Example.xlsx (ooxml, embedded labels, table is Hoja1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;left join (Tmp) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load Year, Month, Group, Reference, Amount as Amount2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM Example.xlsx (ooxml, embedded labels, table is Hoja1)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;where len(trim(SubGroup))=0;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Final:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load Year, Month, Group, SubGroup, Reference, alt(Amount, Amount2) as Amount&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resident Tmp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP Table Tmp;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 14:59:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Populate-Table-Dinamically/m-p/993933#M338384</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-11-13T14:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: Populate Table Dinamically</title>
      <link>https://community.qlik.com/t5/QlikView/Populate-Table-Dinamically/m-p/993934#M338385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Maxgro! It works like a charm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Marcel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Nov 2015 09:14:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Populate-Table-Dinamically/m-p/993934#M338385</guid>
      <dc:creator>marcel_olmo</dc:creator>
      <dc:date>2015-11-16T09:14:23Z</dc:date>
    </item>
  </channel>
</rss>

