<?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 Re: Group 'age' dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Group-age-dimension/m-p/1587241#M1205742</link>
    <description>&lt;P&gt;Thanks. This solved my issues easily using the bar chart and the ability to enter the Dimension with an IF statement.&lt;/P&gt;</description>
    <pubDate>Fri, 31 May 2019 17:24:28 GMT</pubDate>
    <dc:creator>gdisalvopep</dc:creator>
    <dc:date>2019-05-31T17:24:28Z</dc:date>
    <item>
      <title>Group 'age' dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Group-age-dimension/m-p/264024#M1205738</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 am creating a vertical bar chart where the age of a sample is the dimension. The expression is irrelevant for the question.&lt;/P&gt;&lt;P&gt;Taking age as a dimension, all ages are displayed seperately. Which is less informational for my situation than grouping them into age groups (eg. 10-20; 20-30; 30-40... etcetera)&lt;/P&gt;&lt;P&gt;I suppose I could achieve this by pre editing my load data, or by working with the load data during load..? But rather; I would like to do this when creating the chart, anyone know of a way? Maybe there is an option where I can manually group dimension values and rename them?&lt;/P&gt;&lt;P&gt;Curious of any thoughts on this or on best practices on my situation! Thx in advance (this is my first forum post)&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 10:37:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-age-dimension/m-p/264024#M1205738</guid>
      <dc:creator />
      <dc:date>2010-06-29T10:37:45Z</dc:date>
    </item>
    <item>
      <title>Group 'age' dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Group-age-dimension/m-p/264025#M1205739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;age is there in side the qlikview with the help of age() you find out the age and then you make&lt;/P&gt;&lt;P&gt;age bucket with the help of class function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ashish Srivastava&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 10:58:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-age-dimension/m-p/264025#M1205739</guid>
      <dc:creator />
      <dc:date>2010-06-29T10:58:50Z</dc:date>
    </item>
    <item>
      <title>Group 'age' dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Group-age-dimension/m-p/264026#M1205740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx for quick respons! Got both age and class functions to work.&lt;/P&gt;&lt;P&gt;Though, I need to class non continously (forgot to mention that in my earlier post). Like this:&lt;/P&gt;&lt;P&gt;0-20&lt;/P&gt;&lt;P&gt;24-29&lt;/P&gt;&lt;P&gt;30-34&lt;/P&gt;&lt;P&gt;35-39&lt;/P&gt;&lt;P&gt;40-44&lt;/P&gt;&lt;P&gt;44-49&lt;/P&gt;&lt;P&gt;50-54&lt;/P&gt;&lt;P&gt;55-59&lt;/P&gt;&lt;P&gt;60-64&lt;/P&gt;&lt;P&gt;65-69&lt;/P&gt;&lt;P&gt;70+&lt;/P&gt;&lt;P&gt;This is now my class code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;=class(Leeftijd,10,Leeftijd,15)&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 11:29:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-age-dimension/m-p/264026#M1205740</guid>
      <dc:creator />
      <dc:date>2010-06-29T11:29:10Z</dc:date>
    </item>
    <item>
      <title>Group 'age' dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Group-age-dimension/m-p/264027#M1205741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd do it during the load. But if you want to do it in a chart, I'd just use nested if() statements:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;if(Age&amp;lt;=20,dual( '0-20',20)&lt;BR /&gt;,if(Age&amp;lt;=23,dual('21-23',23)&lt;BR /&gt;,if(Age&amp;lt;=29,dual('24-29',29)&lt;BR /&gt;...)))&lt;/P&gt;&lt;P&gt;The dual() function is there to make sure the data gets sorted properly, though in this case you should be fine without it. But it's often required, so I'll leave it in the example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jun 2010 01:39:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-age-dimension/m-p/264027#M1205741</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-06-30T01:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: Group 'age' dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Group-age-dimension/m-p/1587241#M1205742</link>
      <description>&lt;P&gt;Thanks. This solved my issues easily using the bar chart and the ability to enter the Dimension with an IF statement.&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 17:24:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-age-dimension/m-p/1587241#M1205742</guid>
      <dc:creator>gdisalvopep</dc:creator>
      <dc:date>2019-05-31T17:24:28Z</dc:date>
    </item>
  </channel>
</rss>

