<?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: Ranges in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Ranges/m-p/136053#M761973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;you can also use the intervalmatch() function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Aug 2018 06:53:22 GMT</pubDate>
    <dc:creator>olivierrobin</dc:creator>
    <dc:date>2018-08-14T06:53:22Z</dc:date>
    <item>
      <title>Ranges</title>
      <link>https://community.qlik.com/t5/QlikView/Ranges/m-p/136051#M761969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to create the filter with ranges like below&amp;nbsp; how can i build this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a column : TotalAmount&amp;nbsp;&amp;nbsp;&amp;nbsp; based on this i need to create a Range filter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 651px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0 5.4pt 0 5.4pt;" valign="top" width="571"&gt;&lt;P&gt;&lt;STRONG&gt;ranges: &lt;/STRONG&gt;$0 to 100K&amp;nbsp; and 100K-1M, 1M to 10M, 10M+&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sony&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranges/m-p/136051#M761969</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges</title>
      <link>https://community.qlik.com/t5/QlikView/Ranges/m-p/136052#M761970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create new column in the same table using the below script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TotalAmount &amp;gt;10000000,'&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; 10M+',&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;if(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TotalAmount &amp;gt;1000000 and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TotalAmount &amp;lt;=10000000&lt;/SPAN&gt; ,'&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; 1M to 10 M',&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;if(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TotalAmount &amp;gt;100000 and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TotalAmount &amp;lt;=&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;1000000 &lt;/SPAN&gt;&lt;/SPAN&gt;,'&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; 100K - 1M',&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;$0 to 100K'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;))) As Range_Filer&lt;/SPAN&gt;&lt;/P&gt;&lt;H3 class="r" style="font-size: 18px; font-weight: normal; color: #222222; font-family: arial, sans-serif;"&gt;&lt;/H3&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 06:50:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranges/m-p/136052#M761970</guid>
      <dc:creator>sibin_jacob</dc:creator>
      <dc:date>2018-08-14T06:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges</title>
      <link>https://community.qlik.com/t5/QlikView/Ranges/m-p/136053#M761973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;you can also use the intervalmatch() function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 06:53:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranges/m-p/136053#M761973</guid>
      <dc:creator>olivierrobin</dc:creator>
      <dc:date>2018-08-14T06:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges</title>
      <link>https://community.qlik.com/t5/QlikView/Ranges/m-p/136054#M761974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if i want to create one more column like this how can i do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AmountRange:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri',sans-serif;"&gt;less than 1, 1-500K, 500K-5M, 5M+&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 06:57:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranges/m-p/136054#M761974</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2018-08-14T06:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges</title>
      <link>https://community.qlik.com/t5/QlikView/Ranges/m-p/136055#M761975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks how can&amp;nbsp; i implement this with above condition?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 06:57:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranges/m-p/136055#M761975</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2018-08-14T06:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges</title>
      <link>https://community.qlik.com/t5/QlikView/Ranges/m-p/136056#M761976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you will have to create a table with 3 columns&lt;/P&gt;&lt;P&gt;min value&lt;/P&gt;&lt;P&gt;max value&lt;/P&gt;&lt;P&gt;label of the range&lt;/P&gt;&lt;P&gt;then use intervalmatch() to join your data with this table&lt;/P&gt;&lt;P&gt;have a look at qlik documentation, see Matching intervals to discrete data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 06:59:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranges/m-p/136056#M761976</guid>
      <dc:creator>olivierrobin</dc:creator>
      <dc:date>2018-08-14T06:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges</title>
      <link>https://community.qlik.com/t5/QlikView/Ranges/m-p/136057#M761977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;TotalAmount &amp;gt;5000000,'&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt; 5M+',&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;if(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;TotalAmount &amp;gt;500000 and &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;TotalAmount &amp;lt;=5000000&lt;/SPAN&gt; ,'&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt; 500K to 5 M',&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;if(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;TotalAmount &amp;gt;=1 and &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;TotalAmount &amp;lt;=&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;500000 &lt;/SPAN&gt;&lt;/SPAN&gt;,'&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt; 1 - 500K',&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;'&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;lessthan 1'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;))) As Range_Filer1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;or you can give specifically, in the below case, zero values are not in any Range&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;TotalAmount &amp;gt;5000000,'&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt; 5M+',&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;if(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;TotalAmount &amp;gt;500000 and &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;TotalAmount &amp;lt;=5000000&lt;/SPAN&gt; ,'&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt; 500K to 5 M',&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;if(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;TotalAmount &amp;gt;=1 and &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;TotalAmount &amp;lt;=&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;500000 &lt;/SPAN&gt;&lt;/SPAN&gt;,'&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt; 1 - 500K',&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-weight: inherit;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: inherit; font-style: inherit; font-weight: inherit; font-size: 13.3333px;"&gt;if(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt;TotalAmount &amp;lt;1 &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;'&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;lessthan 1'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;))) ) As Range_Filer1&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 07:18:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranges/m-p/136057#M761977</guid>
      <dc:creator>sibin_jacob</dc:creator>
      <dc:date>2018-08-14T07:18:58Z</dc:date>
    </item>
  </channel>
</rss>

