<?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: Missing age groups in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928357#M468087</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's what the data looks like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 350px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl71" height="20" width="174"&gt;Name &lt;/TD&gt;&lt;TD class="xl71" style="border-left: none;" width="96"&gt;DOB &lt;/TD&gt;&lt;TD class="xl71" style="border-left: none;" width="80"&gt;Age (yrs)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;Name1&lt;/TD&gt;&lt;TD align="right" class="xl70"&gt;4/27/2012&lt;/TD&gt;&lt;TD class="xl69"&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;Name2&lt;/TD&gt;&lt;TD align="right" class="xl70"&gt;8/24/2010&lt;/TD&gt;&lt;TD class="xl69"&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;Name3&lt;/TD&gt;&lt;TD align="right" class="xl70"&gt;12/31/2007&lt;/TD&gt;&lt;TD class="xl69"&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;Name4&lt;/TD&gt;&lt;TD align="right" class="xl70"&gt;1/14/2014&lt;/TD&gt;&lt;TD class="xl69"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;Name5&lt;/TD&gt;&lt;TD align="right" class="xl70"&gt;10/10/2007&lt;/TD&gt;&lt;TD class="xl69"&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;Name6&lt;/TD&gt;&lt;TD align="right" class="xl70"&gt;11/22/2010&lt;/TD&gt;&lt;TD class="xl69"&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Sep 2015 19:23:44 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-09-23T19:23:44Z</dc:date>
    <item>
      <title>Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928352#M468082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am designing a QV app using data that I loaded in QV from an excel spreadsheet. The spreadsheet lists individuals with their ages. I tried to create age groups in QV scripting using the&amp;nbsp; age field and "if" statement but some of the individuals in the data were not assigned to any age group even though their age is included in the data both in QV and in the excel spreadsheet. How do I fix these missing age groups? could there be something wrong with the scripting? the script loaded fine.&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;gt;20, 'Over 20',&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;lt;= 20 and [CMED Age] &amp;gt;= 16, '16 - 20',&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;lt;= 15 and [CMED Age] &amp;gt;= 11, '11 - 15',&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;lt;= 10 and [CMED Age] &amp;gt;= 6, '6 - 10',&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;lt;= 5 and [CMED Age] &amp;gt;= 4, '4 - 5',&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;lt;= 3 and [CMED Age] &amp;gt;= 1, '1 - 3',&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;lt; 1, 'Under 1'))))))) as [CMED Age_Group];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 18:34:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928352#M468082</guid>
      <dc:creator />
      <dc:date>2015-09-23T18:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928353#M468083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;gt;20, 'Over 20',&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;lt;= 20 and [CMED Age] &amp;gt;= 16, '16 - 20',&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;lt;= 15 and [CMED Age] &amp;gt;= 11, '11 - 15',&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;lt;= 10 and [CMED Age] &amp;gt;= 6, '6 - 10',&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;lt;= 5 and [CMED Age] &amp;gt;= 4, '4 - 5',&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;lt;= 3 and [CMED Age] &amp;gt;= 1, '1 - 3',&lt;/P&gt;&lt;P&gt;if([CMED Age] &amp;lt; 1, 'Under 1', 'Missing Group'))))))) as [CMED Age_Group];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:07:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928353#M468083</guid>
      <dc:creator>pamaxeed</dc:creator>
      <dc:date>2015-09-23T19:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928354#M468084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But that would tell it to assume that the age group is missing for that individual right? which would be incorrect because the individual does have an age in the age field and so, should have an age group among those listed in the script, rather than being defined as "missing group". I can't seem to understand why some of the individuals were not grouped into one of the age groups listed - that's what I would like to fix...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:14:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928354#M468084</guid>
      <dc:creator />
      <dc:date>2015-09-23T19:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928355#M468085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share the sample data if possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:18:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928355#M468085</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2015-09-23T19:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928356#M468086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also check possibility of using class function QV provides to create buckets like this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:20:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928356#M468086</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2015-09-23T19:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928357#M468087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's what the data looks like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 350px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl71" height="20" width="174"&gt;Name &lt;/TD&gt;&lt;TD class="xl71" style="border-left: none;" width="96"&gt;DOB &lt;/TD&gt;&lt;TD class="xl71" style="border-left: none;" width="80"&gt;Age (yrs)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;Name1&lt;/TD&gt;&lt;TD align="right" class="xl70"&gt;4/27/2012&lt;/TD&gt;&lt;TD class="xl69"&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;Name2&lt;/TD&gt;&lt;TD align="right" class="xl70"&gt;8/24/2010&lt;/TD&gt;&lt;TD class="xl69"&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;Name3&lt;/TD&gt;&lt;TD align="right" class="xl70"&gt;12/31/2007&lt;/TD&gt;&lt;TD class="xl69"&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;Name4&lt;/TD&gt;&lt;TD align="right" class="xl70"&gt;1/14/2014&lt;/TD&gt;&lt;TD class="xl69"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;Name5&lt;/TD&gt;&lt;TD align="right" class="xl70"&gt;10/10/2007&lt;/TD&gt;&lt;TD class="xl69"&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;Name6&lt;/TD&gt;&lt;TD align="right" class="xl70"&gt;11/22/2010&lt;/TD&gt;&lt;TD class="xl69"&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:23:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928357#M468087</guid>
      <dc:creator />
      <dc:date>2015-09-23T19:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928358#M468088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe you have decimal in some age?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10.5&lt;/P&gt;&lt;P&gt;15.5&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:34:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928358#M468088</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-09-23T19:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928359#M468089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's just what I was thinking because the age field was a calculated field in excel using the date of birth. So, what's the best way to resolve that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:35:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928359#M468089</guid>
      <dc:creator />
      <dc:date>2015-09-23T19:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928360#M468090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I noticed that the people that do not have an age group assigned have an age at either the lower or higher end of each age group&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:36:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928360#M468090</guid>
      <dc:creator />
      <dc:date>2015-09-23T19:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928361#M468091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try to format it like that num(text(CMED_AGE))....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:43:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928361#M468091</guid>
      <dc:creator>pamaxeed</dc:creator>
      <dc:date>2015-09-23T19:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928362#M468092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;floor (or round or ceil) the age &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or change the limit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;LOAD *,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;if([CMED Age] &amp;gt;20, 'Over 20',&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;if([CMED Age] &amp;lt;= 20 and [CMED Age] &amp;gt; 15,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;gt;15 - 20',&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;if([CMED Age] &amp;lt;= 15 and [CMED Age] &amp;gt; 10,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;gt;10 - 15',&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;if([CMED Age] &amp;lt;= 10 and [CMED Age] &amp;gt; 5,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;gt;5 - 10',&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;if([CMED Age] &amp;lt;= 5 and [CMED Age] &amp;gt; 3,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;gt;3 - 5',&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;if([CMED Age] &amp;lt;= 3 and [CMED Age] &amp;gt;= 1,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '1 - 3',&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;if([CMED Age] &amp;lt; 1,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Under 1'&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;))))))) &lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;as [CMED Age_Group];&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:47:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928362#M468092</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-09-23T19:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928363#M468093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good catch &lt;A href="https://community.qlik.com/qlik-users/10670"&gt;maxgro&lt;/A&gt;‌, as script is working fine with normal cases. He may need to round the ages to nearest integer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:47:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928363#M468093</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2015-09-23T19:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928364#M468094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Maxgro, I used the script:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;round([Age (yrs)],1) as [CMED Age],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;and it fixed the age groups for all the names.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks everyone!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 20:09:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928364#M468094</guid>
      <dc:creator />
      <dc:date>2015-09-23T20:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Missing age groups</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928365#M468095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please close this thread by marking a correct answer so that it will be helpful for others who might be looking for a similar solution&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Sep 2015 05:53:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-age-groups/m-p/928365#M468095</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-09-29T05:53:21Z</dc:date>
    </item>
  </channel>
</rss>

