<?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 How to group smaller values into a category in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-group-smaller-values-into-a-category/m-p/500704#M556594</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I have a chart where I have a continuous line chart whose data is as follows&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;min , Value&lt;/P&gt;&lt;P&gt;20 , 50&lt;/P&gt;&lt;P&gt;40, 60&lt;/P&gt;&lt;P&gt;60, 10&lt;/P&gt;&lt;P&gt;80, 1&lt;/P&gt;&lt;P&gt;100,1&lt;/P&gt;&lt;P&gt;120,1&lt;/P&gt;&lt;P&gt;140,1&lt;/P&gt;&lt;P&gt;160,1&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;So it makes very rough line chart what I want is in my linechart there should be values like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;min , Value&lt;/P&gt;&lt;P&gt;20 , 50&lt;/P&gt;&lt;P&gt;40, 60&lt;/P&gt;&lt;P&gt;60, 10&lt;/P&gt;&lt;P&gt;80+, Sum of all values of &amp;gt;60 mins&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How is this possible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Jul 2013 11:16:05 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-07-19T11:16:05Z</dc:date>
    <item>
      <title>How to group smaller values into a category</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-smaller-values-into-a-category/m-p/500704#M556594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I have a chart where I have a continuous line chart whose data is as follows&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;min , Value&lt;/P&gt;&lt;P&gt;20 , 50&lt;/P&gt;&lt;P&gt;40, 60&lt;/P&gt;&lt;P&gt;60, 10&lt;/P&gt;&lt;P&gt;80, 1&lt;/P&gt;&lt;P&gt;100,1&lt;/P&gt;&lt;P&gt;120,1&lt;/P&gt;&lt;P&gt;140,1&lt;/P&gt;&lt;P&gt;160,1&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;So it makes very rough line chart what I want is in my linechart there should be values like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;min , Value&lt;/P&gt;&lt;P&gt;20 , 50&lt;/P&gt;&lt;P&gt;40, 60&lt;/P&gt;&lt;P&gt;60, 10&lt;/P&gt;&lt;P&gt;80+, Sum of all values of &amp;gt;60 mins&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How is this possible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 11:16:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-smaller-values-into-a-category/m-p/500704#M556594</guid>
      <dc:creator />
      <dc:date>2013-07-19T11:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to group smaller values into a category</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-smaller-values-into-a-category/m-p/500705#M556595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;load if(min&amp;gt;60,'80+',min) as min, Value&lt;/P&gt;&lt;P&gt;from &lt;EM&gt;...somewhere...&lt;/EM&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or as a calculated dimension in your chart, i.e. instead of using min as dimension you use as calculated dimension if(min&amp;gt;60,'80+',min).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 11:31:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-smaller-values-into-a-category/m-p/500705#M556595</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-07-19T11:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to group smaller values into a category</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-smaller-values-into-a-category/m-p/500706#M556596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks it works , Now I want to group these values by a step of 20 i.e. on xaxis labels will show 0,20,40,60,60+&lt;/P&gt;&lt;P&gt;20 will have value of count of all the events which occured between 0 and 20 and 40 will have&amp;nbsp; value of count of all the events which occured between 20 and 40 and can I add min suffix which will make labels like this 20min,40min,60min,60+min ?&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="44265" class="jive-image-thumbnail jive-image" onclick="" alt="Cont.PNG" src="https://community.qlik.com/legacyfs/online/44265_Cont.PNG" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 11:52:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-smaller-values-into-a-category/m-p/500706#M556596</guid>
      <dc:creator />
      <dc:date>2013-07-19T11:52:00Z</dc:date>
    </item>
  </channel>
</rss>

