<?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 cluster bars by arbitrary number (for readability) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587193#M543958</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello. I have a bar chart with ~700 bars (please see attached). I would like to group them into groups (say of 10, or 25, or 50) to increase readability. I may cluster them in groups of n/10 to show deciles. Again, this is purely for ease of viewing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From what I've read, clustering needs multiple dimensions. I tried adding a calculated dimension of =FLOOR(ROWNO(TOTAL),25) in order to get them into groups of 25. This formula doesn't calculate when it's a dimension. It works perfectly when I use it as an expression, but then I cannot use it for defining bar clusters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For what it's worth, I'm much more comfortable on the scripting side of things rather than the layout/visualization side of things, so I apologize if this is an easy one that I'm missing!'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Apr 2014 18:04:47 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-04-16T18:04:47Z</dc:date>
    <item>
      <title>cluster bars by arbitrary number (for readability)</title>
      <link>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587193#M543958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello. I have a bar chart with ~700 bars (please see attached). I would like to group them into groups (say of 10, or 25, or 50) to increase readability. I may cluster them in groups of n/10 to show deciles. Again, this is purely for ease of viewing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From what I've read, clustering needs multiple dimensions. I tried adding a calculated dimension of =FLOOR(ROWNO(TOTAL),25) in order to get them into groups of 25. This formula doesn't calculate when it's a dimension. It works perfectly when I use it as an expression, but then I cannot use it for defining bar clusters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For what it's worth, I'm much more comfortable on the scripting side of things rather than the layout/visualization side of things, so I apologize if this is an easy one that I'm missing!'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 18:04:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587193#M543958</guid>
      <dc:creator />
      <dc:date>2014-04-16T18:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: cluster bars by arbitrary number (for readability)</title>
      <link>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587194#M543959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;bumping this in the hopes that someone has a suggestion&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2014 03:42:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587194#M543959</guid>
      <dc:creator />
      <dc:date>2014-04-24T03:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: cluster bars by arbitrary number (for readability)</title>
      <link>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587195#M543960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you attach the sample? Try Class().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2014 04:03:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587195#M543960</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-04-24T04:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: cluster bars by arbitrary number (for readability)</title>
      <link>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587196#M543961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest a script level calculated dimension would work fine in this case.&lt;/P&gt;&lt;P&gt;1. create a field while loading the data as&lt;/P&gt;&lt;P&gt; ceil(rowno()/25) as clusters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. when u reload u get a new field called "clusters" with value "1" for first 25 values, "2" for the next 25 and so on till the last row in ur table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. use this cluster as the dimension. in the bar chart..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. u may even bucket them with some business rules like ascending order of sales(which can be done with a order by in scripting)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Sundar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2014 06:29:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587196#M543961</guid>
      <dc:creator>sundarakumar</dc:creator>
      <dc:date>2014-04-24T06:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: cluster bars by arbitrary number (for readability)</title>
      <link>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587197#M543962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sundar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, the bars below are calculated on the fly by taking value/average(other related values). The linkage is actually by a synthetic key that was formed using intervalmatch. Without destroying the intervalmatch-created bridge table, I can't flatten my data structure to the point where I can push the cluster number into the script (and thus, into the fact table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've basically given up on this... it doesn't look supported in Qlikview unless you can let the script do the heavy lifting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't urgently need a solution; I'll leave this question marked unanswered in the hopes that a future QV release supports "arbitrary clustering".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 19:42:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587197#M543962</guid>
      <dc:creator />
      <dc:date>2014-04-29T19:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: cluster bars by arbitrary number (for readability)</title>
      <link>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587198#M543963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post a sample app in which u r facing the problem, so that we can try to find a solution.&lt;/P&gt;&lt;P&gt;-Sundar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 02:26:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/cluster-bars-by-arbitrary-number-for-readability/m-p/587198#M543963</guid>
      <dc:creator>sundarakumar</dc:creator>
      <dc:date>2014-04-30T02:26:51Z</dc:date>
    </item>
  </channel>
</rss>

