<?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: Issue with number formatting in Line chart in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1740152#M56651</link>
    <description>&lt;P&gt;Thanks for the helpful solution &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/44035"&gt;@SergeyMak&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;I was able to get this to work with a small change to your measure expression, the format part of the nested expression needed to be in single quotes.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;num($(=MetricFormula),'$(=MetricNumFormat)')&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Sep 2020 09:50:33 GMT</pubDate>
    <dc:creator>crvctsaa</dc:creator>
    <dc:date>2020-09-01T09:50:33Z</dc:date>
    <item>
      <title>Issue with number formatting in Line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1631857#M47031</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;We have 2 measures (Sales, Share) which we are showing dynamically in line chart. These 2 measures have different number formatting which I am handling using below expression:&lt;/P&gt;&lt;P&gt;if(Metric='Share',Num(Share,'#0%'),Num(Sales,'##,#00'))&lt;/P&gt;&lt;P&gt;and changed the number formatting to ;Measure Expression' which is giving correct results in Tooltip like % for Share and Number for sales.&lt;/P&gt;&lt;P&gt;But the Y axis remains same its not changing based on metrics. For share as well its showing number.&lt;/P&gt;&lt;P&gt;Any inputs to solve this issue.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2019 02:42:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1631857#M47031</guid>
      <dc:creator>pradnyat</dc:creator>
      <dc:date>2019-10-07T02:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with number formatting in Line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1631868#M47036</link>
      <description>&lt;P&gt;you can achieve it by alternate measures only.&lt;BR /&gt;with single expression it was not possible to show 2 different scales for Y axis.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2019 04:32:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1631868#M47036</guid>
      <dc:creator>premvihari</dc:creator>
      <dc:date>2019-10-07T04:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with number formatting in Line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1631876#M47037</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Correct me if I'm wrong, but it looks like you are trying to drive what is displayed on the line chart by toggling in the field. If you do so, than I'd recommend the following approach:&lt;/P&gt;&lt;P&gt;Create or update your Measures table&lt;/P&gt;&lt;P&gt;[Measures]:&lt;/P&gt;&lt;P&gt;LOAD Metric, MetricFormula, Replace(MetricNumFormat,'.', ',') AS MetricNumFormat INLINE [&lt;/P&gt;&lt;P&gt;Metric, MetricFormula, MetricNumFormat&lt;/P&gt;&lt;P&gt;Share, Sum(Share),#.##0%&lt;/P&gt;&lt;P&gt;Sales, Sum(Sales),#.##0&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Than use the following Expression&lt;/P&gt;&lt;P&gt;NUM($(=MetricFormula),$(=MetricNumFormat))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: I'm not sure why you don't have an aggregation function for your expression, but it usually required. That's why I've added SUM(). Replace it according to your needs&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2019 05:23:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1631876#M47037</guid>
      <dc:creator>SergeyMak</dc:creator>
      <dc:date>2019-10-07T05:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with number formatting in Line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1631887#M47039</link>
      <description>Yes I tried that but its not changing the values displayed at Y Axis&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Oct 2019 05:47:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1631887#M47039</guid>
      <dc:creator>pradnyat</dc:creator>
      <dc:date>2019-10-07T05:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with number formatting in Line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1631898#M47040</link>
      <description>&lt;P&gt;Usually it changes Y axis&lt;/P&gt;&lt;P&gt;It would be great if you can post the screenshot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2019 06:46:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1631898#M47040</guid>
      <dc:creator>SergeyMak</dc:creator>
      <dc:date>2019-10-07T06:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with number formatting in Line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1631918#M47041</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Maybe is not selected automatic format number in measure setting?&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2019 07:24:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1631918#M47041</guid>
      <dc:creator>StarinieriG</dc:creator>
      <dc:date>2019-10-07T07:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with number formatting in Line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1633216#M47150</link>
      <description>&lt;P&gt;Attaching the QVF file for reference. Y axis is still not showing the % values, with measure expression in number format I was able to achieve hover number format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help will be really appreciated!&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 18:46:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1633216#M47150</guid>
      <dc:creator>pradnyat</dc:creator>
      <dc:date>2019-10-09T18:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with number formatting in Line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1633251#M47151</link>
      <description>&lt;P&gt;I have shared the QVF file&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 19:12:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1633251#M47151</guid>
      <dc:creator>pradnyat</dc:creator>
      <dc:date>2019-10-09T19:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with number formatting in Line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1740152#M56651</link>
      <description>&lt;P&gt;Thanks for the helpful solution &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/44035"&gt;@SergeyMak&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;I was able to get this to work with a small change to your measure expression, the format part of the nested expression needed to be in single quotes.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;num($(=MetricFormula),'$(=MetricNumFormat)')&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2020 09:50:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Issue-with-number-formatting-in-Line-chart/m-p/1740152#M56651</guid>
      <dc:creator>crvctsaa</dc:creator>
      <dc:date>2020-09-01T09:50:33Z</dc:date>
    </item>
  </channel>
</rss>

