<?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 dynamic interval match in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/dynamic-interval-match/m-p/158328#M33454</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well, since INTERVALMATCH is a function that belongs to the script, it's not available in the run-time (or "real-time" as you say). I think you can reach a desired result using Set Analysis - if you look at the last example in the "Set Analysis" article, it shows a set analysis expression based on a result of an aggregation.&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Aug 2009 10:01:46 GMT</pubDate>
    <dc:creator>Oleg_Troyansky</dc:creator>
    <dc:date>2009-08-17T10:01:46Z</dc:date>
    <item>
      <title>dynamic interval match</title>
      <link>https://community.qlik.com/t5/QlikView/dynamic-interval-match/m-p/158327#M33453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;// INTERVALS&lt;BR /&gt;&lt;BR /&gt;Intervals:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;StartValue, EndValue, Buckets&lt;BR /&gt;0, 100, 1&lt;BR /&gt;100,200, 2&lt;BR /&gt;300,99999, 3&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;// INTERVALMATCH_TABLE&lt;BR /&gt;&lt;BR /&gt;intervalmatch (Frame)&lt;BR /&gt;Load StartValue,EndValue resident Intervals;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a standard intervalmatch example&lt;/P&gt;&lt;P&gt;the problem is that i want to intervalmatch an AVG value based on the current selection. i dont know if this is possible. AVG is calculated every time a different selection is made .. so i cant do this during loading.&lt;/P&gt;&lt;P&gt;my question: is realtime interval match possible .. and how&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Aug 2009 03:53:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dynamic-interval-match/m-p/158327#M33453</guid>
      <dc:creator>amien</dc:creator>
      <dc:date>2009-08-16T03:53:40Z</dc:date>
    </item>
    <item>
      <title>dynamic interval match</title>
      <link>https://community.qlik.com/t5/QlikView/dynamic-interval-match/m-p/158328#M33454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well, since INTERVALMATCH is a function that belongs to the script, it's not available in the run-time (or "real-time" as you say). I think you can reach a desired result using Set Analysis - if you look at the last example in the "Set Analysis" article, it shows a set analysis expression based on a result of an aggregation.&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 10:01:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dynamic-interval-match/m-p/158328#M33454</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-08-17T10:01:46Z</dc:date>
    </item>
    <item>
      <title>dynamic interval match</title>
      <link>https://community.qlik.com/t5/QlikView/dynamic-interval-match/m-p/158329#M33455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like this?&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;=if(avg(...)&amp;lt;=100,dual( '0-100',100)&lt;BR /&gt;,if(avg(...)&amp;lt;=200,dual('101-200',200)&lt;BR /&gt;,if(avg(...)&amp;lt;=300,dual('201-300',300)&lt;BR /&gt; ,dual('301+' ,999))))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 02:58:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dynamic-interval-match/m-p/158329#M33455</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-08-18T02:58:19Z</dc:date>
    </item>
    <item>
      <title>dynamic interval match</title>
      <link>https://community.qlik.com/t5/QlikView/dynamic-interval-match/m-p/158330#M33456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John,&lt;/P&gt;&lt;P&gt;Thanks again for your reply .. that nice .. but how do i connect that to a listbox where i can select the values:0-100, 101-200 etc?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:23:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dynamic-interval-match/m-p/158330#M33456</guid>
      <dc:creator>amien</dc:creator>
      <dc:date>2009-08-18T14:23:41Z</dc:date>
    </item>
    <item>
      <title>dynamic interval match</title>
      <link>https://community.qlik.com/t5/QlikView/dynamic-interval-match/m-p/158331#M33457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using the same expression in a list box. Create a new list box. On the general tab, under Field, select &amp;lt;Expression&amp;gt;. Enter the expression. I &lt;EM&gt;think&lt;/EM&gt; it will work, and dynamically adjust based on your other selections, but I could be wrong. Worth a try.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 00:58:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dynamic-interval-match/m-p/158331#M33457</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-08-19T00:58:35Z</dc:date>
    </item>
  </channel>
</rss>

