<?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 Restrict and combine data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Restrict-and-combine-data/m-p/187733#M51295</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Man, in QV 8.5 "What´s New" example they show a way to create this kind of comparissons using set analisys. But it would be limited to a pre defined number of Customer or Country groups per chart;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jun 2010 16:43:14 GMT</pubDate>
    <dc:creator>fernandotoledo</dc:creator>
    <dc:date>2010-06-14T16:43:14Z</dc:date>
    <item>
      <title>Restrict and combine data</title>
      <link>https://community.qlik.com/t5/QlikView/Restrict-and-combine-data/m-p/187732#M51294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;BR /&gt;I am trying to build a chart like below --&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;Product Country&lt;BR /&gt; T &amp;amp; F J &amp;amp; K L &amp;amp; O &amp;amp; Y&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;A &amp;amp; B 123 423 442&lt;BR /&gt;C &amp;amp; D &amp;amp; E 324 534 563&lt;BR /&gt;F &amp;amp; G 123 5521 634&lt;/CODE&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;There are several products and countries records but this chart should restrict the data only to few of those. Also the data is grouped based on custom criteria.&lt;/P&gt;&lt;P&gt;For example, for 2 seperate products - A &amp;amp; B and 2 seperate countries - T &amp;amp; F, the amount is - 123&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone give me a direction to build a chart like this? Appreciate any help..&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jun 2010 16:21:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Restrict-and-combine-data/m-p/187732#M51294</guid>
      <dc:creator />
      <dc:date>2010-06-14T16:21:18Z</dc:date>
    </item>
    <item>
      <title>Restrict and combine data</title>
      <link>https://community.qlik.com/t5/QlikView/Restrict-and-combine-data/m-p/187733#M51295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Man, in QV 8.5 "What´s New" example they show a way to create this kind of comparissons using set analisys. But it would be limited to a pre defined number of Customer or Country groups per chart;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jun 2010 16:43:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Restrict-and-combine-data/m-p/187733#M51295</guid>
      <dc:creator>fernandotoledo</dc:creator>
      <dc:date>2010-06-14T16:43:14Z</dc:date>
    </item>
    <item>
      <title>Restrict and combine data</title>
      <link>https://community.qlik.com/t5/QlikView/Restrict-and-combine-data/m-p/187734#M51296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.. I looked into Whats New example that was shipped with QV 9.x but couldnt find any chart that is similar to what I am trying build... can you tell me which chart object you are referring to?&lt;/P&gt;&lt;P&gt;I Understand that I need to use Set Analysis for this type of chart, but its more than that like I also have to combine different data sets into single column..&lt;/P&gt;&lt;P&gt;Am trying out few options, but if someone has done this type of chart before, I would appreciate if I can get any pointers..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jun 2010 18:51:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Restrict-and-combine-data/m-p/187734#M51296</guid>
      <dc:creator />
      <dc:date>2010-06-14T18:51:58Z</dc:date>
    </item>
    <item>
      <title>Restrict and combine data</title>
      <link>https://community.qlik.com/t5/QlikView/Restrict-and-combine-data/m-p/187735#M51297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think I'd use set analysis. I'd just build the groups and use the groups in a pivot table as the dimensions, and sum(Amount) as the expression. Products and countries that aren't in a group will automatically be excluded from the chart if you set suppress when null on the dimensions.&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;[Data]:&lt;BR /&gt;LOAD&lt;BR /&gt; chr(ord('A')+floor(rand()*10)) as Product&lt;BR /&gt;,chr(ord('F')+floor(rand()*20)) as Country&lt;BR /&gt;,ceil(rand()*100) as Amount&lt;BR /&gt;AUTOGENERATE 100&lt;BR /&gt;;&lt;BR /&gt;LEFT JOIN ([Data])&lt;BR /&gt;LOAD&lt;BR /&gt; subfield("Product Group",' &amp;amp; ') as Product&lt;BR /&gt;,"Product Group"&lt;BR /&gt;INLINE [&lt;BR /&gt;Product Group&lt;BR /&gt;A &amp;amp; B&lt;BR /&gt;C &amp;amp; D &amp;amp; E&lt;BR /&gt;F &amp;amp; G&lt;BR /&gt;];&lt;BR /&gt;LEFT JOIN ([Data])&lt;BR /&gt;LOAD&lt;BR /&gt; subfield("Country Group",' &amp;amp; ') as Country&lt;BR /&gt;,"Country Group"&lt;BR /&gt;INLINE [&lt;BR /&gt;Country Group&lt;BR /&gt;T &amp;amp; F&lt;BR /&gt;J &amp;amp; K&lt;BR /&gt;L &amp;amp; O &amp;amp; Y&lt;BR /&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jun 2010 19:20:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Restrict-and-combine-data/m-p/187735#M51297</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-06-14T19:20:45Z</dc:date>
    </item>
    <item>
      <title>Restrict and combine data</title>
      <link>https://community.qlik.com/t5/QlikView/Restrict-and-combine-data/m-p/187736#M51298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks much! This is what I was looking for!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jun 2010 22:51:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Restrict-and-combine-data/m-p/187736#M51298</guid>
      <dc:creator />
      <dc:date>2010-06-14T22:51:00Z</dc:date>
    </item>
  </channel>
</rss>

