<?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 Creating Aging Categories in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Creating-Aging-Categories/m-p/44508#M2983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have Support Case aging data but I need to put them in to aging categories (i.e. &amp;lt; 2days, 2 - 15 days, 15-30 days, 30-60, &amp;gt;60, etc.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought it would be this simple:&lt;/P&gt;&lt;P&gt;=If([Age (Days)]&amp;lt;2,'&amp;lt;2', If([Age (Days)]&amp;lt;15,'2-15', If([Age (Days)]&amp;lt;30,'15-30', IF([Age (Days)]&amp;lt;60,'30-60', If([Age (Days)]&amp;gt;60,'&amp;gt;60'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 18 Mar 2018 18:23:27 GMT</pubDate>
    <dc:creator>mcapopa1</dc:creator>
    <dc:date>2018-03-18T18:23:27Z</dc:date>
    <item>
      <title>Creating Aging Categories</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-Aging-Categories/m-p/44508#M2983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have Support Case aging data but I need to put them in to aging categories (i.e. &amp;lt; 2days, 2 - 15 days, 15-30 days, 30-60, &amp;gt;60, etc.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought it would be this simple:&lt;/P&gt;&lt;P&gt;=If([Age (Days)]&amp;lt;2,'&amp;lt;2', If([Age (Days)]&amp;lt;15,'2-15', If([Age (Days)]&amp;lt;30,'15-30', IF([Age (Days)]&amp;lt;60,'30-60', If([Age (Days)]&amp;gt;60,'&amp;gt;60'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Mar 2018 18:23:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-Aging-Categories/m-p/44508#M2983</guid>
      <dc:creator>mcapopa1</dc:creator>
      <dc:date>2018-03-18T18:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Aging Categories</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-Aging-Categories/m-p/44509#M2984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Qlik Age() function takes 2 parameters and returns the numbers of completed years,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I think it not the correct function to use and by only passing it one parameter will fail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See &lt;A href="https://help.qlik.com/en-US/sense/February2018/Subsystems/Hub/Content/Scripting/DateAndTimeFunctions/age.htm" title="https://help.qlik.com/en-US/sense/February2018/Subsystems/Hub/Content/Scripting/DateAndTimeFunctions/age.htm"&gt;https://help.qlik.com/en-US/sense/February2018/Subsystems/Hub/Content/Scripting/DateAndTimeFunctions/age.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your &lt;EM&gt;Days&lt;/EM&gt; field contains a number of days then may use something like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;= If ( [Days] &amp;lt; 2, '&amp;lt;2' &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;, If ( &lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Days] &lt;/SPAN&gt;&amp;lt; 15 , '2-15' &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;, If ( &lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Days] &amp;lt; &lt;/SPAN&gt;30 , '15-30' &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;, If ( &lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Days] &lt;/SPAN&gt;&amp;lt; 60 , '30-60' &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;, If ( &lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Days] &lt;/SPAN&gt;&amp;gt; 60 , '&amp;gt;60' &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;EM&gt;)))))&lt;/EM&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Mar 2018 18:38:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-Aging-Categories/m-p/44509#M2984</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-18T18:38:04Z</dc:date>
    </item>
  </channel>
</rss>

