<?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: How to get classes of this range in Reporting Service &amp; Alerting</title>
    <link>https://community.qlik.com/t5/Reporting-Service-Alerting/How-to-get-classes-of-this-range/m-p/1946493#M249</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/185797"&gt;@lincoln&lt;/a&gt;&amp;nbsp; Please mark it as a solved, if it has resolved your issue. Thanks.&lt;/P&gt;</description>
    <pubDate>Wed, 22 Jun 2022 02:25:39 GMT</pubDate>
    <dc:creator>sidhiq91</dc:creator>
    <dc:date>2022-06-22T02:25:39Z</dc:date>
    <item>
      <title>How to get classes of this range</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/How-to-get-classes-of-this-range/m-p/1945972#M243</link>
      <description>&lt;TABLE width="271"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="117"&gt;$0&amp;nbsp;&lt;/TD&gt;
&lt;TD width="154"&gt;&amp;nbsp;$ 5,000&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="117"&gt;$5,001&amp;nbsp;&lt;/TD&gt;
&lt;TD width="154"&gt;$ 8,000&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="117"&gt;$8,001&lt;/TD&gt;
&lt;TD width="154"&gt;&amp;nbsp;$ 12,000&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="117"&gt;$12,001&amp;nbsp;&lt;/TD&gt;
&lt;TD width="154"&gt;$ 15,500&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="117"&gt;$15,500&lt;/TD&gt;
&lt;TD width="154"&gt;$ Above&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Tue, 21 Jun 2022 02:34:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/How-to-get-classes-of-this-range/m-p/1945972#M243</guid>
      <dc:creator>lincoln</dc:creator>
      <dc:date>2022-06-21T02:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to get classes of this range</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/How-to-get-classes-of-this-range/m-p/1946004#M244</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;You can use the below expression in the script editor. Please let me know if that had helped.&lt;/P&gt;
&lt;P&gt;Pick( Match(-1,Sales&amp;gt;=0 and Sales&amp;lt;=5000,&lt;BR /&gt;Sales&amp;gt;5000 and Sales&amp;lt;=8000,&lt;BR /&gt;Sales&amp;gt;8000 and Sales&amp;lt;=12000,&lt;BR /&gt;Sales&amp;gt;12000 and Sales&amp;lt;=15500,&lt;BR /&gt;Sales&amp;gt;15500),&lt;BR /&gt;'0-5000','5000-8000','8000-12000','12000-15500','Above') as Bucket&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2022 05:37:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/How-to-get-classes-of-this-range/m-p/1946004#M244</guid>
      <dc:creator>sidhiq91</dc:creator>
      <dc:date>2022-06-21T05:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to get classes of this range</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/How-to-get-classes-of-this-range/m-p/1946028#M245</link>
      <description>&lt;P&gt;can you explain why -1?&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2022 06:21:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/How-to-get-classes-of-this-range/m-p/1946028#M245</guid>
      <dc:creator>lincoln</dc:creator>
      <dc:date>2022-06-21T06:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to get classes of this range</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/How-to-get-classes-of-this-range/m-p/1946036#M246</link>
      <description>&lt;P&gt;HI&lt;/P&gt;
&lt;P&gt;Try like below, dual function helps for sorting purposes&lt;/P&gt;
&lt;P&gt;=if(Sales&amp;lt;=5000, Dual('below 5000', 1),&lt;BR /&gt;if(Sales&amp;lt;=8000, Dual('5001-8000',2),&lt;BR /&gt;If(Sales&amp;lt;=12000,&amp;nbsp;Dual('8001-12000',3),&lt;BR /&gt;If(Sales&amp;lt;=15500,&amp;nbsp;Dual('12001-15500',4), Dual('Above 15500', 5)))))&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2022 06:39:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/How-to-get-classes-of-this-range/m-p/1946036#M246</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2022-06-21T06:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to get classes of this range</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/How-to-get-classes-of-this-range/m-p/1946493#M249</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/185797"&gt;@lincoln&lt;/a&gt;&amp;nbsp; Please mark it as a solved, if it has resolved your issue. Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2022 02:25:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/How-to-get-classes-of-this-range/m-p/1946493#M249</guid>
      <dc:creator>sidhiq91</dc:creator>
      <dc:date>2022-06-22T02:25:39Z</dc:date>
    </item>
  </channel>
</rss>

