<?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 Additional text required on line chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185644#M50061</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks&lt;/P&gt;&lt;P&gt;I'm after some help trying to duplicate the following line chart, specifically the text boxes that appear on the chart.&lt;/P&gt;&lt;P&gt;The chart uses the following as a calculated dimension&lt;/P&gt;&lt;P&gt;=Aggr ( Rank ( Sum ( _rFMV ) ) , CO_ShortName )&lt;/P&gt;&lt;P&gt;The value is calculated as&lt;/P&gt;&lt;P&gt;=Sum ( _rFMV ) / Sum (Total _rFMV )&lt;/P&gt;&lt;P&gt;My problem is this; using the "Text in Chart" function, I want to create a formula that shows me the number of companies (CO_ShortName) that are included up to the point where the Sum(_rFMV)/Sum(Total _rFMV) reaches 50%, I also want to trap the value of _rFMV for the company that takes the % value over 50%.&lt;/P&gt;&lt;P&gt;As a secondary issue, would it be possible to add that formula as an expression on the chart and have this shown as a symbol (I think I can probably manage that myself once the answer to the first question is forthcoming).&lt;/P&gt;&lt;P&gt;Thanks a lot for any help,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Sep 2009 18:56:23 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-09-14T18:56:23Z</dc:date>
    <item>
      <title>Additional text required on line chart</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185644#M50061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks&lt;/P&gt;&lt;P&gt;I'm after some help trying to duplicate the following line chart, specifically the text boxes that appear on the chart.&lt;/P&gt;&lt;P&gt;The chart uses the following as a calculated dimension&lt;/P&gt;&lt;P&gt;=Aggr ( Rank ( Sum ( _rFMV ) ) , CO_ShortName )&lt;/P&gt;&lt;P&gt;The value is calculated as&lt;/P&gt;&lt;P&gt;=Sum ( _rFMV ) / Sum (Total _rFMV )&lt;/P&gt;&lt;P&gt;My problem is this; using the "Text in Chart" function, I want to create a formula that shows me the number of companies (CO_ShortName) that are included up to the point where the Sum(_rFMV)/Sum(Total _rFMV) reaches 50%, I also want to trap the value of _rFMV for the company that takes the % value over 50%.&lt;/P&gt;&lt;P&gt;As a secondary issue, would it be possible to add that formula as an expression on the chart and have this shown as a symbol (I think I can probably manage that myself once the answer to the first question is forthcoming).&lt;/P&gt;&lt;P&gt;Thanks a lot for any help,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Sep 2009 18:56:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185644#M50061</guid>
      <dc:creator />
      <dc:date>2009-09-14T18:56:23Z</dc:date>
    </item>
    <item>
      <title>Additional text required on line chart</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185645#M50062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kevin,&lt;/P&gt;&lt;P&gt;I was going to suggest the technique of adding a second expression as a Popup - but that doesn't appear to work in line charts!&lt;/P&gt;&lt;P&gt;If you are prepared to go with a bar chart for this, and you turn off the automatic popup labels (Presentation tab), take off the "Text as Popup" from the main expression, you can add a new expression which will contain code for a popup - you then turn off the "Bar" option for this expression and have "Text as Popup" on.&lt;/P&gt;&lt;P&gt;An expression like this might work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;=Aggr ( Rank ( Sum ( _rFMV ) ) , CO_ShortName ) &amp;amp; chr(13) &amp;amp;&lt;BR /&gt;'Value: ' &amp;amp; Num(RangeSum(Above((Sum ( _rFMV ) / Sum (Total _rFMV )), 0, RowNo())),'0.0%') &amp;amp; chr(13) &amp;amp;&lt;BR /&gt;'Companies: ' &amp;amp; RangeSum(Count(CO_ShortName), 0, RowNo())&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;This might be the closest to your requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Sep 2009 19:43:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185645#M50062</guid>
      <dc:creator>stephencredmond</dc:creator>
      <dc:date>2009-09-14T19:43:20Z</dc:date>
    </item>
    <item>
      <title>Additional text required on line chart</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185646#M50063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stephen&lt;/P&gt;&lt;P&gt;I would be very interested to see an example of how to use a second expression as a pop-up, this might be an approach we could use (if we convert to a bar chart).&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 17:08:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185646#M50063</guid>
      <dc:creator />
      <dc:date>2009-09-16T17:08:42Z</dc:date>
    </item>
    <item>
      <title>Additional text required on line chart</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185647#M50064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nigel,&lt;/P&gt;&lt;P&gt;I have uploaded a "How To" QVW to &lt;A href="http://community.qlik.com/media/p/78614.aspx"&gt;http://community.qlik.com/media/p/78614.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 19:24:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185647#M50064</guid>
      <dc:creator>stephencredmond</dc:creator>
      <dc:date>2009-09-16T19:24:36Z</dc:date>
    </item>
    <item>
      <title>Additional text required on line chart</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185648#M50065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@ Stephen&lt;/P&gt;&lt;P&gt;Thats pretty cool, thanks for sharing!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 19:53:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185648#M50065</guid>
      <dc:creator />
      <dc:date>2009-09-16T19:53:26Z</dc:date>
    </item>
    <item>
      <title>Additional text required on line chart</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185649#M50066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stephen&lt;/P&gt;&lt;P&gt;That's exactly what I've been trying to do, didn't even cross my mind to have an expression that's neither a bar or line or symbol, great solution, thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 20:08:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-text-required-on-line-chart/m-p/185649#M50066</guid>
      <dc:creator />
      <dc:date>2009-09-16T20:08:59Z</dc:date>
    </item>
  </channel>
</rss>

