<?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 group data as ranges on x-axis? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250580#M1207865</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mob,&lt;/P&gt;&lt;P&gt;This can be done by using "interval matching" functionality of QlikView. Just go through this topic in the reference manual and you will get to know how to implement this functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Apr 2010 12:51:07 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-04-08T12:51:07Z</dc:date>
    <item>
      <title>How to group data as ranges on x-axis?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250579#M1207864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I'm new to QlickView and was wonderiing if anyone can help with a query of mine.. (I have attached an example for reference)&lt;/P&gt;&lt;P&gt;To illustrate I have the following load command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;BR /&gt;INLINE [&lt;BR /&gt;Revenue, Days,&lt;BR /&gt;10, 1&lt;BR /&gt;9, 2,&lt;BR /&gt;10, 3,&lt;BR /&gt;6, 4,&lt;BR /&gt;5, 5,&lt;BR /&gt;6, 6&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Now I've generated the a graph with Revenue as a dimension and created an expression that counts the frequency of Revenue to Days.&lt;/P&gt;&lt;P&gt;Is there a way to group the data into ranges? so for example, instead of having 5,6,9,10, I can group it into 5-6 and 9-10 and also sum up the frequency in these ranges?&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Apr 2010 12:13:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250579#M1207864</guid>
      <dc:creator />
      <dc:date>2010-04-08T12:13:51Z</dc:date>
    </item>
    <item>
      <title>How to group data as ranges on x-axis?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250580#M1207865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mob,&lt;/P&gt;&lt;P&gt;This can be done by using "interval matching" functionality of QlikView. Just go through this topic in the reference manual and you will get to know how to implement this functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Apr 2010 12:51:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250580#M1207865</guid>
      <dc:creator />
      <dc:date>2010-04-08T12:51:07Z</dc:date>
    </item>
    <item>
      <title>How to group data as ranges on x-axis?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250581#M1207866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could do it with a calculated dimension. If your ranges should always be the same width, you can use the class() function. For instance, you could replace your dimension with:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;class(Revenue,2,'Revenue',1)&lt;/P&gt;&lt;P&gt;If your ranges aren't even, or if you don't like how class() presents the data, you could replace your dimension with something like this:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;if(Revenue&amp;lt;=6,dual('0-6',6),if(Revenue&amp;lt;=10,dual('6-10',10),dual('&amp;gt;10',11)))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Apr 2010 23:48:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250581#M1207866</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-04-08T23:48:24Z</dc:date>
    </item>
    <item>
      <title>How to group data as ranges on x-axis?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250582#M1207867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys,&lt;/P&gt;&lt;P&gt;Both suggestions were excellent.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 17:19:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250582#M1207867</guid>
      <dc:creator />
      <dc:date>2010-04-09T17:19:26Z</dc:date>
    </item>
    <item>
      <title>How to group data as ranges on x-axis?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250583#M1207868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks -- I will try this out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Jan 2011 02:25:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250583#M1207868</guid>
      <dc:creator />
      <dc:date>2011-01-23T02:25:19Z</dc:date>
    </item>
    <item>
      <title>How to group data as ranges on x-axis?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250584#M1207871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;vijaydop wrote:Thanks -- I will try this out.&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;I'll mention that I wouldn't suggest my solution any more. I dislike calculated dimensions, primarily from a performance perspective. Instead, I'd now suggest using one of those expressions during the load to build a "Revenue Range" field, or something along those lines. That moves any performance hit into the load, where it doesn't affect response time to the users.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jan 2011 18:59:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-data-as-ranges-on-x-axis/m-p/250584#M1207871</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2011-01-24T18:59:54Z</dc:date>
    </item>
  </channel>
</rss>

