<?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: rank bands questions in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/rank-bands-questions/m-p/2519561#M106285</link>
    <description>&lt;P&gt;A flexible way to do this is to generate a Range table that can map rank values to many RankBands like this:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;// Generate some test data&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Ranks:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD RecNo() as rank&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;AutoGenerate 75;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Ranges:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD * INLINE [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;RankBand, RangeStart, RangeEnd&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Top 10, 1, 10&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Top 20, 1, 20&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Top 50, 1, 50&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Join (Ranges)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;IntervalMatch (rank) LOAD RangeStart, RangeEnd RESIDENT Ranges;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;DROP FIELDS RangeStart, RangeEnd;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;For more see the downloadable examples at&amp;nbsp;&lt;A href="https://qlikviewcookbook.com/recipes/download-info/date-grouping/" target="_blank"&gt;https://qlikviewcookbook.com/recipes/download-info/date-grouping/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and&amp;nbsp;&lt;A href="https://qlikviewcookbook.com/2023/08/creating-time-groups-in-your-data-model/" target="_blank"&gt;https://qlikviewcookbook.com/2023/08/creating-time-groups-in-your-data-model/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 30 May 2025 05:29:00 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2025-05-30T05:29:00Z</dc:date>
    <item>
      <title>rank bands questions</title>
      <link>https://community.qlik.com/t5/App-Development/rank-bands-questions/m-p/2519543#M106284</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I am creating a few Ranks bands and i created a few dimensions for this purpose. to make it simple, it looks like this&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;ID, ranks&lt;/P&gt;&lt;P&gt;resident table;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if (rank&amp;lt;=10, 'Top 10',&lt;/P&gt;&lt;P&gt;if (rank&amp;lt;=20, 'Top 20',&lt;/P&gt;&lt;P&gt;if (rank&amp;lt;=50, 'Top 50',&lt;/P&gt;&lt;P&gt;....))) as RankBand&lt;/P&gt;&lt;P&gt;so i created a selection box for RankBand. however, Top 20 is 11-20, top 50 is 21-50&lt;/P&gt;&lt;P&gt;is there a way for this dimension, when selecting top 20 it will show from 1-20 and so on?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 02:15:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/rank-bands-questions/m-p/2519543#M106284</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2025-05-30T02:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: rank bands questions</title>
      <link>https://community.qlik.com/t5/App-Development/rank-bands-questions/m-p/2519561#M106285</link>
      <description>&lt;P&gt;A flexible way to do this is to generate a Range table that can map rank values to many RankBands like this:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;// Generate some test data&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Ranks:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD RecNo() as rank&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;AutoGenerate 75;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Ranges:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD * INLINE [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;RankBand, RangeStart, RangeEnd&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Top 10, 1, 10&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Top 20, 1, 20&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Top 50, 1, 50&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Join (Ranges)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;IntervalMatch (rank) LOAD RangeStart, RangeEnd RESIDENT Ranges;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;DROP FIELDS RangeStart, RangeEnd;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;For more see the downloadable examples at&amp;nbsp;&lt;A href="https://qlikviewcookbook.com/recipes/download-info/date-grouping/" target="_blank"&gt;https://qlikviewcookbook.com/recipes/download-info/date-grouping/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and&amp;nbsp;&lt;A href="https://qlikviewcookbook.com/2023/08/creating-time-groups-in-your-data-model/" target="_blank"&gt;https://qlikviewcookbook.com/2023/08/creating-time-groups-in-your-data-model/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 05:29:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/rank-bands-questions/m-p/2519561#M106285</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2025-05-30T05:29:00Z</dc:date>
    </item>
  </channel>
</rss>

