<?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 In QlikView how to classify age in groups of 10 starting with 15? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/In-QlikView-how-to-classify-age-in-groups-of-10-starting-with-15/m-p/2527169#M1226622</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would like to group employee age in groups of 10 starting at 15.&lt;/P&gt;&lt;P&gt;This calculated dimension:&amp;nbsp;&lt;/P&gt;&lt;P&gt;=dual(replace(class(Age, 10), '&amp;lt;= x &amp;lt;','-'),class(Age, 10))&lt;/P&gt;&lt;P&gt;gives this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aging result2025-08-13_10-41-51.jpg" style="width: 122px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/182821i9CAA88DA2C2CF364/image-size/large?v=v2&amp;amp;px=999" role="button" title="Aging result2025-08-13_10-41-51.jpg" alt="Aging result2025-08-13_10-41-51.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
    <pubDate>Wed, 13 Aug 2025 08:54:13 GMT</pubDate>
    <dc:creator>NenadV</dc:creator>
    <dc:date>2025-08-13T08:54:13Z</dc:date>
    <item>
      <title>In QlikView how to classify age in groups of 10 starting with 15?</title>
      <link>https://community.qlik.com/t5/QlikView/In-QlikView-how-to-classify-age-in-groups-of-10-starting-with-15/m-p/2527169#M1226622</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would like to group employee age in groups of 10 starting at 15.&lt;/P&gt;&lt;P&gt;This calculated dimension:&amp;nbsp;&lt;/P&gt;&lt;P&gt;=dual(replace(class(Age, 10), '&amp;lt;= x &amp;lt;','-'),class(Age, 10))&lt;/P&gt;&lt;P&gt;gives this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aging result2025-08-13_10-41-51.jpg" style="width: 122px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/182821i9CAA88DA2C2CF364/image-size/large?v=v2&amp;amp;px=999" role="button" title="Aging result2025-08-13_10-41-51.jpg" alt="Aging result2025-08-13_10-41-51.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 08:54:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-QlikView-how-to-classify-age-in-groups-of-10-starting-with-15/m-p/2527169#M1226622</guid>
      <dc:creator>NenadV</dc:creator>
      <dc:date>2025-08-13T08:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: In QlikView how to classify age in groups of 10 starting with 15?</title>
      <link>https://community.qlik.com/t5/QlikView/In-QlikView-how-to-classify-age-in-groups-of-10-starting-with-15/m-p/2527181#M1226623</link>
      <description>&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;class(Age,10,'-',5 )&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 09:14:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-QlikView-how-to-classify-age-in-groups-of-10-starting-with-15/m-p/2527181#M1226623</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2025-08-13T09:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: In QlikView how to classify age in groups of 10 starting with 15?</title>
      <link>https://community.qlik.com/t5/QlikView/In-QlikView-how-to-classify-age-in-groups-of-10-starting-with-15/m-p/2527188#M1226624</link>
      <description>&lt;P&gt;Thanks Prashant.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 09:41:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-QlikView-how-to-classify-age-in-groups-of-10-starting-with-15/m-p/2527188#M1226624</guid>
      <dc:creator>NenadV</dc:creator>
      <dc:date>2025-08-13T09:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: In QlikView how to classify age in groups of 10 starting with 15?</title>
      <link>https://community.qlik.com/t5/QlikView/In-QlikView-how-to-classify-age-in-groups-of-10-starting-with-15/m-p/2527193#M1226625</link>
      <description>&lt;P&gt;In addition to the suggestion from&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/42758"&gt;@PrashantSangle&lt;/a&gt;&amp;nbsp;the third parameter replaced only the x but not the &amp;lt;= &amp;gt; chars. Therefore the replace within a dual() is further needed if a different view is wanted. But the fourth parameter is useful to adjust the bucket-size to a fix offset-value.&lt;/P&gt;&lt;P&gt;On top of it you may wrap the Age with a rangemax() and/or rangemin() if the start- and end-bucket should be limited to a certain number of buckets and may in the end looking like:&lt;/P&gt;&lt;P&gt;= dual(replace(class(rangemin(66, rangemax(15, Age)),10,'',5), ' &amp;lt;= &amp;lt; ', ' - '),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; class(rangemin(66, rangemax(15, Age)),10,'',5))&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 10:18:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-QlikView-how-to-classify-age-in-groups-of-10-starting-with-15/m-p/2527193#M1226625</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-08-13T10:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: In QlikView how to classify age in groups of 10 starting with 15?</title>
      <link>https://community.qlik.com/t5/QlikView/In-QlikView-how-to-classify-age-in-groups-of-10-starting-with-15/m-p/2527195#M1226626</link>
      <description>&lt;P&gt;Thank you Marcus.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Replacing '-' with 'X' in Prashant's solution is fine with me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 10:25:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-QlikView-how-to-classify-age-in-groups-of-10-starting-with-15/m-p/2527195#M1226626</guid>
      <dc:creator>NenadV</dc:creator>
      <dc:date>2025-08-13T10:25:14Z</dc:date>
    </item>
  </channel>
</rss>

