<?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 Buckets in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dimension-Buckets/m-p/472140#M176314</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 list of product IDs and I want to group them in buckets by spend in descending order. For example, if I have 100 product IDs, I want to group them in 4 buckets ([1-25], [26-50], [51-75], [76-100]) form highest to lowest overall spend. I assume once I have them set as a dimension, I'll be able to run other analysis on the same buckets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 May 2013 21:51:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-05-17T21:51:03Z</dc:date>
    <item>
      <title>Dimension Buckets</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-Buckets/m-p/472140#M176314</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 list of product IDs and I want to group them in buckets by spend in descending order. For example, if I have 100 product IDs, I want to group them in 4 buckets ([1-25], [26-50], [51-75], [76-100]) form highest to lowest overall spend. I assume once I have them set as a dimension, I'll be able to run other analysis on the same buckets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 May 2013 21:51:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-Buckets/m-p/472140#M176314</guid>
      <dc:creator />
      <dc:date>2013-05-17T21:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension Buckets</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-Buckets/m-p/472141#M176315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then an inlin load should help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load * inline[&lt;/P&gt;&lt;P&gt;ID, group&lt;/P&gt;&lt;P&gt;1,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [1-25]&lt;/P&gt;&lt;P&gt;2, [1-25]&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;25, [1-25]&lt;/P&gt;&lt;P&gt;26, [26-50]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 May 2013 22:04:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-Buckets/m-p/472141#M176315</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2013-05-17T22:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension Buckets</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-Buckets/m-p/472142#M176316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt; If(ProductID &amp;lt;= 25, '[1-25]', If(ProductID &amp;lt;= 50, '[26-50]', If(ProductID &amp;lt;= 75, '[51-75]', '[76-100]'))) AS Bucket&lt;/P&gt;&lt;P&gt;from tablename; //datasource&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 May 2013 00:26:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-Buckets/m-p/472142#M176316</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2013-05-18T00:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension Buckets</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-Buckets/m-p/472143#M176317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My only problem is that I don't want to place them in buckets based on the ProductID, I want to put them in buckets based on spend BY ProductID. Highest 25 spend ProductIDs first, then second 25, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 May 2013 13:43:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-Buckets/m-p/472143#M176317</guid>
      <dc:creator />
      <dc:date>2013-05-20T13:43:36Z</dc:date>
    </item>
  </channel>
</rss>

