<?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: Stacked Chart formatting in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Stacked-Chart-formatting/m-p/1512207#M750136</link>
    <description>&lt;P&gt;Hi Loveifail,&lt;/P&gt;&lt;P&gt;Thanks for having a try at this! I did attempt this (couple to many brackets in your formula, but I get where you are going with it), however the formula is looking at it from a very literal point of view and excludes results from the chart that don't meet the requirement of the count - so if I have a category (EG - Yellow that's 12 million and a category EG - blue - that's only 125000) it excludes the 1.2 million rather than change the format of the number.&amp;nbsp; I only need a format change - I don't want to exclude results, I need the results format to change on selections made - I just need the end format to be different on the same chart for ease of viewing - in some instances I have results where I'm in the millions versus results in the high tens of thousands - and I want the user to be able to easily see numerically that there's 12.5K blue and 1.2Mil yellow.&lt;/P&gt;&lt;P&gt;I don't think its actually possible on the same chart - very happy to be shown different - but I think stacked number formats all need to be the same.&lt;/P&gt;&lt;P&gt;Massively appreciate you taking the time to look at this!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Harks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 26 Nov 2018 12:47:39 GMT</pubDate>
    <dc:creator>Harks</dc:creator>
    <dc:date>2018-11-26T12:47:39Z</dc:date>
    <item>
      <title>Stacked Chart formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Stacked-Chart-formatting/m-p/1511673#M750134</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I have a chart that is stacked and values split into categories. Ideally I'd like the format of the sum of the categories to change depending on their value. So if a sum of a category is over 150000 then the value display 150K but if another category on the same chart moves into the millions for it to display a million maker eg. 1100000 then it to display 1.1M.&lt;/P&gt;&lt;P&gt;At present I can put the stacked formats into a single format, but not multiple format changes only - if I attempt to apply a formula it takes the value sin a literal sense and doesn't just change the format method -&amp;nbsp;I've attached an image with my graph format at present - Ideally anything under 1 million I'd like to display in thousands - just the (k).&lt;/P&gt;&lt;P&gt;The formula at present is this: "num(sum(fabs([count]))/1000000,'##.0m')"&lt;/P&gt;&lt;P&gt;If I put an if statement around it - it looks at the formula in a literal sense, and not just the formatting. I'm thinking maybe something along the lines of a variable string to add the M or K on, but I'm still stuck with the other stacked values becoming out of sync.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help or pointers in the right direction would be great!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stacked-Chart-formatting/m-p/1511673#M750134</guid>
      <dc:creator>Harks</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Stacked Chart formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Stacked-Chart-formatting/m-p/1511893#M750135</link>
      <description>&lt;P&gt;Try this?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Len(sum(fabs([count]))/1000000)=10, Num(sum(fabs([count]))/1000000)&lt;SPAN&gt;,'##.0 M'&lt;/SPAN&gt;),&amp;nbsp;&lt;/STRONG&gt;&lt;STRONG&gt;If(Len(sum(fabs([count]))/10000)=5, Num(sum(fabs([count]))/10000)&lt;SPAN&gt;,'##.0 K'&lt;/SPAN&gt;)))&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Nov 2018 13:19:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stacked-Chart-formatting/m-p/1511893#M750135</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-11-25T13:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: Stacked Chart formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Stacked-Chart-formatting/m-p/1512207#M750136</link>
      <description>&lt;P&gt;Hi Loveifail,&lt;/P&gt;&lt;P&gt;Thanks for having a try at this! I did attempt this (couple to many brackets in your formula, but I get where you are going with it), however the formula is looking at it from a very literal point of view and excludes results from the chart that don't meet the requirement of the count - so if I have a category (EG - Yellow that's 12 million and a category EG - blue - that's only 125000) it excludes the 1.2 million rather than change the format of the number.&amp;nbsp; I only need a format change - I don't want to exclude results, I need the results format to change on selections made - I just need the end format to be different on the same chart for ease of viewing - in some instances I have results where I'm in the millions versus results in the high tens of thousands - and I want the user to be able to easily see numerically that there's 12.5K blue and 1.2Mil yellow.&lt;/P&gt;&lt;P&gt;I don't think its actually possible on the same chart - very happy to be shown different - but I think stacked number formats all need to be the same.&lt;/P&gt;&lt;P&gt;Massively appreciate you taking the time to look at this!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Harks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 12:47:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stacked-Chart-formatting/m-p/1512207#M750136</guid>
      <dc:creator>Harks</dc:creator>
      <dc:date>2018-11-26T12:47:39Z</dc:date>
    </item>
  </channel>
</rss>

