<?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: Grouping List Box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Grouping-List-Box/m-p/1079247#M359830</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using Interval Match&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GroupTable:&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;Start, Stop, Grouping&lt;/P&gt;&lt;P&gt;0, 9, 0 to &amp;lt;10&lt;/P&gt;&lt;P&gt;10, 19, 10 to &amp;lt;20&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;20, 29, 20 to &amp;lt;30&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;30, 39, 30 to &amp;lt;40&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;40, 49, 40 to &amp;lt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;50, 59, 50 to &amp;lt;60&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;60, 69, 60 to &amp;lt;70&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;70, 79, 70 to &amp;lt;80&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;80,&amp;nbsp; , 80 or more&lt;BR /&gt;&lt;/SPAN&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;IntervalMatchTable:&lt;/P&gt;&lt;P&gt;IntervalMatch(age)&lt;/P&gt;&lt;P&gt;load Start, Stop&lt;/P&gt;&lt;P&gt;Resident GroupTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join (IntervalMatchTable)&lt;/P&gt;&lt;P&gt;Load Start, Stop, Grouping&lt;/P&gt;&lt;P&gt;Resident GroupTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table GroupTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join(Facts)&lt;/P&gt;&lt;P&gt;Load age, Grouping&lt;/P&gt;&lt;P&gt;Resident IntervalMatchTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table IntervalMatchTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then plot Grouping on a list box which will automatically associate with age in Facts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Mar 2016 17:57:51 GMT</pubDate>
    <dc:creator>sandeep_sarawgi</dc:creator>
    <dc:date>2016-03-03T17:57:51Z</dc:date>
    <item>
      <title>Grouping List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Grouping-List-Box/m-p/1079245#M359828</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;I'm a beginner to Qlikview. Currently, I have a list box that shows ages 1-80 individually. I'd like to group them such that it's ages &amp;lt;10, 10-20, 20-30, and so on. This way, users can select on the age group as oppose to the specific age and will have data for all ages within that group displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for you help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 03:04:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Grouping-List-Box/m-p/1079245#M359828</guid>
      <dc:creator />
      <dc:date>2016-03-03T03:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Grouping-List-Box/m-p/1079246#M359829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a new field in the script that creates the groups:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Age,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Class(Age, 10) as AgeGroup,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...other fields,&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use that new AgeGroup field in the listbox&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 17:38:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Grouping-List-Box/m-p/1079246#M359829</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-03-03T17:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Grouping-List-Box/m-p/1079247#M359830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using Interval Match&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GroupTable:&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;Start, Stop, Grouping&lt;/P&gt;&lt;P&gt;0, 9, 0 to &amp;lt;10&lt;/P&gt;&lt;P&gt;10, 19, 10 to &amp;lt;20&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;20, 29, 20 to &amp;lt;30&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;30, 39, 30 to &amp;lt;40&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;40, 49, 40 to &amp;lt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;50, 59, 50 to &amp;lt;60&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;60, 69, 60 to &amp;lt;70&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;70, 79, 70 to &amp;lt;80&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;80,&amp;nbsp; , 80 or more&lt;BR /&gt;&lt;/SPAN&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;IntervalMatchTable:&lt;/P&gt;&lt;P&gt;IntervalMatch(age)&lt;/P&gt;&lt;P&gt;load Start, Stop&lt;/P&gt;&lt;P&gt;Resident GroupTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join (IntervalMatchTable)&lt;/P&gt;&lt;P&gt;Load Start, Stop, Grouping&lt;/P&gt;&lt;P&gt;Resident GroupTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table GroupTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join(Facts)&lt;/P&gt;&lt;P&gt;Load age, Grouping&lt;/P&gt;&lt;P&gt;Resident IntervalMatchTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table IntervalMatchTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then plot Grouping on a list box which will automatically associate with age in Facts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 17:57:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Grouping-List-Box/m-p/1079247#M359830</guid>
      <dc:creator>sandeep_sarawgi</dc:creator>
      <dc:date>2016-03-03T17:57:51Z</dc:date>
    </item>
  </channel>
</rss>

