<?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 Dimention grouping in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318293#M1200124</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;My question pertains to grouping in the dimentions. How is that done? is there a specific code for it?&lt;/P&gt;&lt;P&gt;For example i have a dimension 'Number of months' and another field ' number of customers'. What I have to do is make a chart which doesnt show the Number of months but it shows RANGES. e.g. upto 3 months, supto 6 months, upto 10 months and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the bar chart should show the number of consumers which have due ' upto to 3 months' etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help regarding this is much apprecaited. \&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Apr 2011 07:33:36 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-04-06T07:33:36Z</dc:date>
    <item>
      <title>Dimention grouping</title>
      <link>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318293#M1200124</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;My question pertains to grouping in the dimentions. How is that done? is there a specific code for it?&lt;/P&gt;&lt;P&gt;For example i have a dimension 'Number of months' and another field ' number of customers'. What I have to do is make a chart which doesnt show the Number of months but it shows RANGES. e.g. upto 3 months, supto 6 months, upto 10 months and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the bar chart should show the number of consumers which have due ' upto to 3 months' etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help regarding this is much apprecaited. \&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 07:33:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318293#M1200124</guid>
      <dc:creator />
      <dc:date>2011-04-06T07:33:36Z</dc:date>
    </item>
    <item>
      <title>Dimention grouping</title>
      <link>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318294#M1200125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe Class() could be the thing you are looking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H4&gt;&lt;A id="kanchor413" name="kanchor413"&gt;&lt;/A&gt;&lt;A id="class" name="class"&gt;&lt;/A&gt;class( expression, interval [ , label [ , offset ]] )&lt;/H4&gt;&lt;P&gt;Creates a classification of expressions. The bin width is determined by the number set as interval. The result is shown as a&amp;lt;=x&amp;lt;b, where a and b are the upper and lower limits of the bin. The x can be replaced by an arbitrary string stated in label. 0 is normally the default starting point of the classification. This can be changed by adding an offset.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 08:22:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318294#M1200125</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-04-06T08:22:07Z</dc:date>
    </item>
    <item>
      <title>Dimention grouping</title>
      <link>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318295#M1200126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If you want to use automatic same-length intervals, you can use class() function as a calculated dimension. This is an example:&lt;/P&gt;&lt;P&gt;=floor(number_of_months,3)&lt;/P&gt;&lt;P&gt;This will create automatic 3-month intervals from number_of_months field.&lt;/P&gt;&lt;P&gt;Otherwise, if you like to specify your own intervals, you have to use intervalmatch clause in script, to connect your intervals to number of month field. Usage is like this:&lt;/P&gt;&lt;P&gt;table1:&lt;/P&gt;&lt;P&gt;Load id, number_of_months from Whatever;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table2:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;from, to, name&lt;/P&gt;&lt;P&gt;0, 50, 0-50&lt;/P&gt;&lt;P&gt;51, 100, 51-100&lt;/P&gt;&lt;P&gt;101, 10000, 101 and more&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join (table1)&lt;/P&gt;&lt;P&gt;intervalmatch (number_of_months)&lt;/P&gt;&lt;P&gt;Load from,&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;resident table2;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Than you will have your own intervals named 0-50, 51-100 and 101 and more connected to table with number of months. When doing intervalmatch join, you need to have all needed field already loaded in qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helpes:)&lt;/P&gt;&lt;P&gt;Tomas&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 08:25:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318295#M1200126</guid>
      <dc:creator />
      <dc:date>2011-04-06T08:25:25Z</dc:date>
    </item>
    <item>
      <title>Dimention grouping</title>
      <link>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318296#M1200127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tomas, i used floor function it made a different field which gives me two values of -1 and 0 but no intervals. where do i have to write the function in the edit script?&lt;/P&gt;&lt;P&gt;can u tell me where i have gone wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 11:10:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318296#M1200127</guid>
      <dc:creator />
      <dc:date>2011-04-06T11:10:31Z</dc:date>
    </item>
    <item>
      <title>Dimention grouping</title>
      <link>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318297#M1200128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;also, why not 'groupby' cannot be used?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 11:11:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318297#M1200128</guid>
      <dc:creator />
      <dc:date>2011-04-06T11:11:13Z</dc:date>
    </item>
    <item>
      <title>Dimention grouping</title>
      <link>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318298#M1200129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;also, the floor function does not display the desired result. it does not create a range it only displays bars every 3 months. i want the display to be cumulative. upto 3 months. then from 3 to 6 months so on and so forth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please guide me thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 11:18:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318298#M1200129</guid>
      <dc:creator />
      <dc:date>2011-04-06T11:18:27Z</dc:date>
    </item>
    <item>
      <title>Dimention grouping</title>
      <link>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318299#M1200130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, my mistake:), I wrote "floor", but I ment "class" function (as described before). I am very sorry. I often confuse these two, but I really don't know why.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2011 08:55:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimention-grouping/m-p/318299#M1200130</guid>
      <dc:creator />
      <dc:date>2011-04-11T08:55:33Z</dc:date>
    </item>
  </channel>
</rss>

