<?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 Multiple groups (clusters) in spiderchart? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637415#M233747</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a data model that distinguishes organizations by size, e.g. number of employees. In a spiderchart, I want to present the results clusters of the number of employees of organizations: organizations with fewer than 1.000 employees, between 1.000 and 2.000 and more than 2.000 employees.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a spiderchart, I want to present the average results for each cluster. How do I do this? when I'm not using the clusters, i.e. the total of all organizations, the figure is. When I want to present the results for each cluster, no data is displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression used:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ([Total employees] &amp;lt;= 1000, count ({&amp;lt;[Function supported] = {"Yes"}&amp;gt;} [Function supported]))&lt;/P&gt;&lt;P&gt;/&lt;/P&gt;&lt;P&gt;count (TOTAL &amp;lt;[Specification function - Importance for System]&amp;gt; [Function supported])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See screenshot of figure: now displayed with the total. What I would like to have is a line for each cluster of employees.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="59040" alt="2014-05-18 15_52_31-QlikView.png" class="jive-image jiveImage" src="/legacyfs/online/59040_2014-05-18 15_52_31-QlikView.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 18 May 2014 13:54:36 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-05-18T13:54:36Z</dc:date>
    <item>
      <title>Multiple groups (clusters) in spiderchart?</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637415#M233747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a data model that distinguishes organizations by size, e.g. number of employees. In a spiderchart, I want to present the results clusters of the number of employees of organizations: organizations with fewer than 1.000 employees, between 1.000 and 2.000 and more than 2.000 employees.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a spiderchart, I want to present the average results for each cluster. How do I do this? when I'm not using the clusters, i.e. the total of all organizations, the figure is. When I want to present the results for each cluster, no data is displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression used:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ([Total employees] &amp;lt;= 1000, count ({&amp;lt;[Function supported] = {"Yes"}&amp;gt;} [Function supported]))&lt;/P&gt;&lt;P&gt;/&lt;/P&gt;&lt;P&gt;count (TOTAL &amp;lt;[Specification function - Importance for System]&amp;gt; [Function supported])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See screenshot of figure: now displayed with the total. What I would like to have is a line for each cluster of employees.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="59040" alt="2014-05-18 15_52_31-QlikView.png" class="jive-image jiveImage" src="/legacyfs/online/59040_2014-05-18 15_52_31-QlikView.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 May 2014 13:54:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637415#M233747</guid>
      <dc:creator />
      <dc:date>2014-05-18T13:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple groups (clusters) in spiderchart?</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637416#M233748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add a second dimension (Calculated) with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If([Total employees]&amp;lt;=1000, 'Group A',&lt;/P&gt;&lt;P&gt;If([Total employees]&amp;lt;=2000, 'Group B',&lt;/P&gt;&lt;P&gt;'Group C'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 May 2014 17:45:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637416#M233748</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-05-18T17:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple groups (clusters) in spiderchart?</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637417#M233749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I added a calculated dimension as described above. &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=If([Total employees]&amp;lt;=1000, 'Group A',&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If([Total employees]&amp;lt;=2000, 'Group B',&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'Group C'))&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;The expression I used is thus: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count ({&amp;lt;[Function supported] = {"Yes"}&amp;gt;} [Function supported])) &lt;/P&gt;&lt;P&gt;/ &lt;/P&gt;&lt;P&gt;count (TOTAL &amp;lt;[Specification function - Importance for System]&amp;gt; [Function supported]) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, the object only shows results for group C. However, there are also outcomes in group A. They are strangely not shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Important thing to mention: I want to show the percentage of 'yes' on a 100% scale, in relation to the number of organizations that has answered 'yes' or 'no' (by function). 'Yes / no' should be excluded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 May 2014 19:14:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637417#M233749</guid>
      <dc:creator />
      <dc:date>2014-05-18T19:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple groups (clusters) in spiderchart?</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637418#M233750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, then you need to make your calculated dimension a little more complex. You probably have a field "Organization" or something similar, and an Organization can only have one possible number of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Total employees]&lt;/SPAN&gt;. If so, try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=Aggr( If(Only([Total employees])&amp;lt;=1000, 'Group A',&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If([Total employees]&amp;lt;=2000, 'Group B',&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Group C')),&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Organization)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 May 2014 20:26:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637418#M233750</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-05-18T20:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple groups (clusters) in spiderchart?</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637419#M233751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your assumptions are correct. I have a field called 'organization'. I've worked out your idea in the properties of the object ('dimensions'). Still only cluster C is shown, while there are also data (number of employees) in cluster A and B. I have adjusted the ranges (for testing), where: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= Aggr (If (Only ([Total employees]) &amp;lt;= &lt;STRONG&gt;100000&lt;/STRONG&gt;, 'Group A' &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If ([Total employees] &amp;lt;= &lt;STRONG&gt;200000&lt;/STRONG&gt;, 'Group B' &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Group C")), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Organization) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still only results of cluster C is shown (or this might be the outcome of all organizations?). I'm going to try it some more, based on your suggestions. Thanks to far.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2014 20:40:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637419#M233751</guid>
      <dc:creator />
      <dc:date>2014-05-19T20:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple groups (clusters) in spiderchart?</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637420#M233752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To debug, put the expression in a list box to see what you get. To test further, change the expression to use Avg() instead of Only():&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=Aggr( If(Avg([Total employees])&amp;lt;=1000, 'Group A',&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Avg([Total employees])&amp;lt;=2000, 'Group B',&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Group C')),&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Organization)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Alternatively, you can try the Class function:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=Class( Aggr( Avg(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Total employees]&lt;/SPAN&gt;), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Organization&lt;/SPAN&gt;), 1000 )&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2014 20:53:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637420#M233752</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-05-19T20:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple groups (clusters) in spiderchart?</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637421#M233753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes! Now I get the results on the screen as I would expect! Thank you &lt;A href="https://community.qlik.com/qlik-users/4003"&gt;Henric Cronström&lt;/A&gt;. It worked with the use '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Avg' in de expression. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2014-05-20 21_05_49-QlikView x64.png" class="jive-image" src="/legacyfs/online/59238_2014-05-20 21_05_49-QlikView x64.png" style="width: 620px; height: 372px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2014 19:09:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-groups-clusters-in-spiderchart/m-p/637421#M233753</guid>
      <dc:creator />
      <dc:date>2014-05-20T19:09:19Z</dc:date>
    </item>
  </channel>
</rss>

