<?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 How to repopulate data with different filter condition (&amp;gt;1 time) in the same table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-repopulate-data-with-different-filter-condition-gt-1-time/m-p/273737#M102412</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have data as below:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled.png" class="jive-image-thumbnail jive-image" onclick="" src="https://community.qlik.com/legacyfs/online/9168_Untitled.png" width="450" /&gt; &lt;/P&gt;&lt;P&gt;What I'd like to do is to add 1 more column in qlikview table, named 'ReportingGroup' (1001,1002,1003, 1004).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like this table to populate data 3 time&lt;/P&gt;&lt;P&gt;1)&amp;nbsp; with ReportingGroup = 1001, populate all the data&lt;/P&gt;&lt;P&gt;2)&amp;nbsp; with ReportingGroup = 1002, populate the data when Region = BKK&lt;/P&gt;&lt;P&gt;3)&amp;nbsp; with ReportingGroup = 1003, populate the data when Region = GTBKK&lt;/P&gt;&lt;P&gt;4)&amp;nbsp; with ReportingGroup = 1004, populate 1 record showing zero value (0 in every field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could i do this in Qlikview?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would be much appreciated for your help...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Dec 2011 08:53:47 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-12-02T08:53:47Z</dc:date>
    <item>
      <title>How to repopulate data with different filter condition (&gt;1 time) in the same table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-repopulate-data-with-different-filter-condition-gt-1-time/m-p/273737#M102412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have data as below:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled.png" class="jive-image-thumbnail jive-image" onclick="" src="https://community.qlik.com/legacyfs/online/9168_Untitled.png" width="450" /&gt; &lt;/P&gt;&lt;P&gt;What I'd like to do is to add 1 more column in qlikview table, named 'ReportingGroup' (1001,1002,1003, 1004).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like this table to populate data 3 time&lt;/P&gt;&lt;P&gt;1)&amp;nbsp; with ReportingGroup = 1001, populate all the data&lt;/P&gt;&lt;P&gt;2)&amp;nbsp; with ReportingGroup = 1002, populate the data when Region = BKK&lt;/P&gt;&lt;P&gt;3)&amp;nbsp; with ReportingGroup = 1003, populate the data when Region = GTBKK&lt;/P&gt;&lt;P&gt;4)&amp;nbsp; with ReportingGroup = 1004, populate 1 record showing zero value (0 in every field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could i do this in Qlikview?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would be much appreciated for your help...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2011 08:53:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-repopulate-data-with-different-filter-condition-gt-1-time/m-p/273737#M102412</guid>
      <dc:creator />
      <dc:date>2011-12-02T08:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to repopulate data with different filter condition (&gt;1 time) in the same table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-repopulate-data-with-different-filter-condition-gt-1-time/m-p/273738#M102413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A simple approach would be to just perform four auto-concatenated loads, maybe like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESULT:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;1001 as ReportingGroup,&lt;/P&gt;&lt;P&gt;CustomerID, FirstName, LastName, Gender, Region, IncomeRange, EmploymentType&lt;/P&gt;&lt;P&gt;from Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;1002 as ReportingGroup,&lt;/P&gt;&lt;P&gt;CustomerID, FirstName, LastName, Gender, Region, IncomeRange, EmploymentType&lt;/P&gt;&lt;P&gt;from Table where Region = 'BKK';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;1003 as ReportingGroup,&lt;/P&gt;&lt;P&gt;CustomerID, FirstName, LastName, Gender, Region, IncomeRange, EmploymentType&lt;/P&gt;&lt;P&gt;from Table where Region = 'GTBKK';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;1004 as ReportingGroup,&lt;/P&gt;&lt;P&gt;0 as CustomerID, 0 as FirstName, 0 as LastName, 0 as Gender, 0 as Region, 0 as IncomeRange, 0 as EmploymentType&lt;/P&gt;&lt;P&gt;autogenerate 1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2011 10:18:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-repopulate-data-with-different-filter-condition-gt-1-time/m-p/273738#M102413</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-12-02T10:18:49Z</dc:date>
    </item>
  </channel>
</rss>

