<?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 Graph intercept procedure in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Graph-intercept-procedure/m-p/250259#M583456</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post your qvw so we can take a look?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Sep 2011 16:00:00 GMT</pubDate>
    <dc:creator>Jason_Michaelides</dc:creator>
    <dc:date>2011-09-09T16:00:00Z</dc:date>
    <item>
      <title>Graph intercept procedure</title>
      <link>https://community.qlik.com/t5/QlikView/Graph-intercept-procedure/m-p/250258#M583455</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 have a graph as the one shown in the picture. The slider below the graph generates a vertical line (in black) which moves in the graph.&lt;/P&gt;&lt;P&gt;Can anyone help me in finding a way to retrieve the intercept value between the black line and the green curve. Is there any function I should use?&lt;/P&gt;&lt;P&gt;I thought that I could interpolate the greenline curve equation and calculate the Y value according to the X position of the black line, but maybe there is a easy way to get this without interpolating the green line point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="7169" alt="Intercept.jpg" class="jive-image-thumbnail jive-image" height="322" src="https://community.qlik.com/legacyfs/online/7169_Intercept.jpg" width="827" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the qv file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 15:54:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Graph-intercept-procedure/m-p/250258#M583455</guid>
      <dc:creator />
      <dc:date>2011-09-09T15:54:31Z</dc:date>
    </item>
    <item>
      <title>Graph intercept procedure</title>
      <link>https://community.qlik.com/t5/QlikView/Graph-intercept-procedure/m-p/250259#M583456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post your qvw so we can take a look?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 16:00:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Graph-intercept-procedure/m-p/250259#M583456</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2011-09-09T16:00:00Z</dc:date>
    </item>
    <item>
      <title>Graph intercept procedure</title>
      <link>https://community.qlik.com/t5/QlikView/Graph-intercept-procedure/m-p/250260#M583457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi, I have posted the file. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2011 16:06:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Graph-intercept-procedure/m-p/250260#M583457</guid>
      <dc:creator />
      <dc:date>2011-09-12T16:06:03Z</dc:date>
    </item>
    <item>
      <title>Graph intercept procedure</title>
      <link>https://community.qlik.com/t5/QlikView/Graph-intercept-procedure/m-p/250261#M583458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it is better to create / recreate your x-axis in the script, maybe like (untested):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUT:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;autonumberhash128 ( @5,@6 ) as [KeyVariable]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(txt, utf8, no labels, delimiter is '\t', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OUTPUT:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;KeyVariable,&lt;/P&gt;&lt;P&gt;count(KeyVariable) as KVCount,&lt;/P&gt;&lt;P&gt;count(KeyVariable)+peek('KVCount') as KVCumCount&lt;/P&gt;&lt;P&gt;resident INPUT group by [KeyVariable];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I noticed that you have used an full accumulation in your graph, that's why I (tried) also to create a cumulated count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So your expression in the text box could maybe look like:&lt;/P&gt;&lt;P&gt;sum(if(KVCount= scrollValue, KVCumCount)) / max(KVCumCount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything untested, sorry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2011 16:50:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Graph-intercept-procedure/m-p/250261#M583458</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-09-12T16:50:12Z</dc:date>
    </item>
    <item>
      <title>Graph intercept procedure</title>
      <link>https://community.qlik.com/t5/QlikView/Graph-intercept-procedure/m-p/250262#M583459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks a lot, it pointed me to the right direction!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 15:10:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Graph-intercept-procedure/m-p/250262#M583459</guid>
      <dc:creator />
      <dc:date>2011-09-13T15:10:00Z</dc:date>
    </item>
  </channel>
</rss>

