<?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: How to to have multiple format on a graph? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-to-have-multiple-format-on-a-graph/m-p/2063897#M87271</link>
    <description>&lt;P&gt;this isnt clear to me, are you trying to format a button or using the button to format a chart?&amp;nbsp; also what format did you want? format numbers or format colors?&lt;BR /&gt;to give you an idea, if you want for eample different number formats, you can store the format in a variable.&amp;nbsp; you can also store colors in a variable and use that in your format&lt;/P&gt;
&lt;P&gt;you may need to explain what you are trying to achieve in more detail&lt;/P&gt;</description>
    <pubDate>Mon, 24 Apr 2023 20:57:03 GMT</pubDate>
    <dc:creator>edwin</dc:creator>
    <dc:date>2023-04-24T20:57:03Z</dc:date>
    <item>
      <title>How to to have multiple format on a graph?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-to-have-multiple-format-on-a-graph/m-p/2063844#M87265</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to format a graph with multiple formats. I have tried to custom format that doesn't work for GP%. I tried also formatting in the expression, but it didn't work as well. What is the best way to format for these button for a graph?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Noor51_0-1682361056277.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/105668iD49932EB62B4B48C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Noor51_0-1682361056277.png" alt="Noor51_0-1682361056277.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 18:36:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-to-have-multiple-format-on-a-graph/m-p/2063844#M87265</guid>
      <dc:creator>Noor51</dc:creator>
      <dc:date>2023-04-24T18:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to to have multiple format on a graph?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-to-have-multiple-format-on-a-graph/m-p/2063897#M87271</link>
      <description>&lt;P&gt;this isnt clear to me, are you trying to format a button or using the button to format a chart?&amp;nbsp; also what format did you want? format numbers or format colors?&lt;BR /&gt;to give you an idea, if you want for eample different number formats, you can store the format in a variable.&amp;nbsp; you can also store colors in a variable and use that in your format&lt;/P&gt;
&lt;P&gt;you may need to explain what you are trying to achieve in more detail&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 20:57:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-to-have-multiple-format-on-a-graph/m-p/2063897#M87271</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2023-04-24T20:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to to have multiple format on a graph?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-to-have-multiple-format-on-a-graph/m-p/2063900#M87272</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using the button to format a chart in a number format such as Sales ($###,###), percentage (%##), Units (###,###), and price ($##.##).&lt;/P&gt;
&lt;P&gt;Here is what I have written in Qlik sense which the formatting is not working.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;pick(vDashboard,&lt;/P&gt;
&lt;P&gt;//Units&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num(&lt;BR /&gt;if(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Sum({&amp;lt;Scenario={'Preliminary Forecast'},[MoYear] = {"&amp;gt;=$(vX)"}&amp;gt;}Units))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0,&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Null(),&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;(Sum({&amp;lt;Scenario={'Preliminary Forecast'},[MoYear] = {"&amp;gt;=$(vX)"}&amp;gt;}Units))),'###,###,###'),&lt;BR /&gt;//Net Sales&lt;BR /&gt;Num(&lt;BR /&gt;if(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Sum({&amp;lt;Scenario={'Preliminary Forecast'},[MoYear] = {"&amp;gt;=$(vX)"}&amp;gt;}[Net Sales])),'$###,###,###')&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0,&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Null(),&lt;BR /&gt;(Sum({&amp;lt;Scenario={'Preliminary Forecast'},[MoYear] = {"&amp;gt;=$(vX)"}&amp;gt;}[Net Sales]))),'$###,###,###',&lt;BR /&gt;//GP&lt;BR /&gt;Num(&lt;BR /&gt;if(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Sum({&amp;lt;Scenario={'Preliminary Forecast'},[MoYear] = {"&amp;gt;=$(vX)"}&amp;gt;}[GP]))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0,&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Null(),&lt;BR /&gt;(Sum({&amp;lt;Scenario={'Preliminary Forecast'},[MoYear] = {"&amp;gt;=$(vX)"}&amp;gt;}[GP]))),'$###,###,###'),&lt;BR /&gt;//GP%&amp;nbsp;&lt;BR /&gt;Num(&lt;BR /&gt;Sum({&amp;lt;Scenario={'Preliminary Forecast'},[MoYear] = {"&amp;gt;=$(vX)"}&amp;gt;}[GP])&lt;BR /&gt;/&lt;BR /&gt;Sum({&amp;lt;Scenario={'Preliminary Forecast'},[MoYear] = {"&amp;gt;=$(vX)"}&amp;gt;}[Net Sales]),'0.0%'),&amp;nbsp;&lt;/P&gt;
&lt;P&gt;//ASP&lt;BR /&gt;Num(&lt;BR /&gt;Sum({&amp;lt;Scenario={'Preliminary Forecast'},[MoYear] = {"&amp;gt;=$(vX)"}&amp;gt;}[Net Sales])&lt;BR /&gt;/&lt;BR /&gt;Sum({&amp;lt;Scenario={'Preliminary Forecast'},[MoYear = {"&amp;gt;=$(vX)"}&amp;gt;}Units),'$#.##'),&amp;nbsp;&lt;/P&gt;
&lt;P&gt;//ACP&lt;BR /&gt;Num(&lt;BR /&gt;Sum({&amp;lt;Scenario={'Preliminary Forecast'},[MoYear] = {"&amp;gt;=$(vX)"}&amp;gt;}[GSNOC])&amp;nbsp;&lt;BR /&gt;/&amp;nbsp;&lt;BR /&gt;Sum({&amp;lt;Scenario={'Preliminary Forecast'},[MoYear] = {"&amp;gt;=$(vX)"}&amp;gt;}Units),'$#.##'),&amp;nbsp;&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 21:06:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-to-have-multiple-format-on-a-graph/m-p/2063900#M87272</guid>
      <dc:creator>Noor51</dc:creator>
      <dc:date>2023-04-24T21:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to to have multiple format on a graph?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-to-have-multiple-format-on-a-graph/m-p/2064027#M87279</link>
      <description>&lt;P&gt;You have multiple buttons that need to change the format of the indicator and the indicator right?&lt;/P&gt;
&lt;P&gt;Why don't you use a variable ?&lt;/P&gt;
&lt;P&gt;I explain my idea :&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Create a variable vKPI&lt;/LI&gt;
&lt;LI&gt;Each button will change the value of the variable vKPI&lt;/LI&gt;
&lt;LI&gt;in the formula of the measure : use a pick match function to switch between the formula&amp;nbsp;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/Pick-and-Match-example/td-p/1156383" target="_self"&gt;Link Pick&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Apr 2023 06:57:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-to-have-multiple-format-on-a-graph/m-p/2064027#M87279</guid>
      <dc:creator>Sabrina_V</dc:creator>
      <dc:date>2023-04-25T06:57:21Z</dc:date>
    </item>
  </channel>
</rss>

