<?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 Dimension Grouping in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dimension-Grouping/m-p/212542#M66493</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;&lt;/P&gt;&lt;P&gt;I have a field called ' Number of months with Average billing'. it indicates the number of months a particular customer has been billed on average.&lt;/P&gt;&lt;P&gt;I want to show the number of customers in a chart with average billing but then it becomse very crowded because the average month number start from 1 and end to 30. I want to show this field as a range. For instance, one bar should indicate the number of customers with average billing months between 1 - 5 , then 5 - 10, 10 - 15 and so on. How can i do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maria&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Apr 2011 07:26:31 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-04-13T07:26:31Z</dc:date>
    <item>
      <title>Dimension Grouping</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-Grouping/m-p/212542#M66493</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;&lt;/P&gt;&lt;P&gt;I have a field called ' Number of months with Average billing'. it indicates the number of months a particular customer has been billed on average.&lt;/P&gt;&lt;P&gt;I want to show the number of customers in a chart with average billing but then it becomse very crowded because the average month number start from 1 and end to 30. I want to show this field as a range. For instance, one bar should indicate the number of customers with average billing months between 1 - 5 , then 5 - 10, 10 - 15 and so on. How can i do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maria&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 07:26:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-Grouping/m-p/212542#M66493</guid>
      <dc:creator />
      <dc:date>2011-04-13T07:26:31Z</dc:date>
    </item>
    <item>
      <title>SV:Dimension Grouping</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-Grouping/m-p/212543#M66494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maria&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would prepare for it in the load script, like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;Load ...&lt;/P&gt;&lt;P style="padding-left:60px;"&gt;[Number of months with Average billing],&lt;/P&gt;&lt;DIV style="padding-left:60px;"&gt;if([Number of months with Average billing]&amp;lt;=5, '1-5',&lt;/DIV&gt;&lt;DIV style="padding-left:90px;"&gt;if([Number of months with Average billing]&amp;lt;=10, '5-10',&lt;/DIV&gt;&lt;DIV style="padding-left:120px;"&gt;if([Number of months with Average billing]&amp;lt;=15, '10-15',&lt;/DIV&gt;&lt;DIV style="padding-left:120px;"&gt;&lt;DIV style="padding-left:30px;"&gt;if([Number of months with Average billing]&amp;lt;=20, '15-20',&lt;/DIV&gt;&lt;DIV style="padding-left:60px;"&gt;if([Number of months with Average billing]&amp;lt;=25, '20-25',&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV style="padding-left:210px;"&gt;if([Number of months with Average billing]&amp;lt;=30, '25-30', '30-')))))) &lt;B&gt;As [Months avg billing Range]&lt;/B&gt;&lt;/DIV&gt;&lt;DIV style="padding-left:60px;"&gt;...&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;Then you can use [Months avg billing Range] as a dimension in charts etc&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 08:28:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-Grouping/m-p/212543#M66494</guid>
      <dc:creator>gandalfgray</dc:creator>
      <dc:date>2011-04-13T08:28:44Z</dc:date>
    </item>
    <item>
      <title>SV:Dimension Grouping</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-Grouping/m-p/212544#M66495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Goran,&lt;/P&gt;&lt;P&gt;you sure that is the IF condition. because you see condition &amp;lt; 10 applies to &amp;lt; 5 also, and &amp;lt;15 applies on &amp;lt;10 and &amp;lt; 5 and so on...&lt;/P&gt;&lt;P&gt;then how? shouldnt it be like if([Number of months with Average billing] &amp;lt;5=, '1-5',&lt;/P&gt;&lt;P&gt;if(]Number of months with Average billing] &amp;lt; 5 AND &amp;lt;= 10, '5-10',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please correct me if i am wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 08:43:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-Grouping/m-p/212544#M66495</guid>
      <dc:creator />
      <dc:date>2011-04-13T08:43:21Z</dc:date>
    </item>
    <item>
      <title>SV:Re: SV:Dimension Grouping</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-Grouping/m-p/212545#M66496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No,&lt;/P&gt;&lt;P&gt;because in my example the second &lt;B&gt;if&lt;/B&gt; is in the first &lt;B&gt;if&lt;/B&gt;:s &lt;B&gt;else&lt;/B&gt; part, the third &lt;B&gt;if&lt;/B&gt; is in the second &lt;B&gt;if&lt;/B&gt;:s &lt;B&gt;else&lt;/B&gt; part etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If [Number of months with Average billing] is less than 5 it is taken care of in the first "then", (that is: '1-5'), others the first if:s "else"-part is applied, and that is a new if-statement.&lt;/P&gt;&lt;P&gt;When you arrive there you already know that [Number of months with Average billing] is more than 5&lt;/P&gt;&lt;P&gt;and so on...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 08:56:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-Grouping/m-p/212545#M66496</guid>
      <dc:creator>gandalfgray</dc:creator>
      <dc:date>2011-04-13T08:56:14Z</dc:date>
    </item>
    <item>
      <title>SV:Re: SV:Dimension Grouping</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-Grouping/m-p/212546#M66497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok I got it, Thanks Goran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 09:01:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-Grouping/m-p/212546#M66497</guid>
      <dc:creator />
      <dc:date>2011-04-13T09:01:23Z</dc:date>
    </item>
  </channel>
</rss>

