<?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 add more than 15 measures in Combo chart? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-add-more-than-15-measures-in-Combo-chart/m-p/1762051#M58929</link>
    <description>&lt;P&gt;hII&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/129202"&gt;@divyathomas&lt;/a&gt;&amp;nbsp;, my suggestion is&amp;nbsp; :too many columns, use a table&lt;/P&gt;</description>
    <pubDate>Mon, 16 Nov 2020 19:53:14 GMT</pubDate>
    <dc:creator>QFabian</dc:creator>
    <dc:date>2020-11-16T19:53:14Z</dc:date>
    <item>
      <title>How to add more than 15 measures in Combo chart?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-more-than-15-measures-in-Combo-chart/m-p/1762042#M58925</link>
      <description>&lt;P&gt;I have a dimension (year) and&amp;nbsp; 1 measure with 25 segments/categories that should be represented as a stacked bar and 1 measure represented as a line. So I used a combo chart where I added each of the 25 segments as a separate measure using this: COUNT(if(Cat_Type='A', Serial_ID)). But the combo chart only seems to allow 15 measures. So I added the rest as alternate measures. Is there a way, I can add more than 15 measures in the combo chart or else sort by count so the top 15 measures are dynamically displayed in measures when filters are applied and the rest in alternate measures? Or else is there is some other way to display this other than a combo chart ?? Because as long as I can make a stacked bar with 25 categories and a line, it would work for me. I am using Qlik 2019. Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 17:49:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-more-than-15-measures-in-Combo-chart/m-p/1762042#M58925</guid>
      <dc:creator>divyathomas</dc:creator>
      <dc:date>2024-11-16T17:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to add more than 15 measures in Combo chart?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-more-than-15-measures-in-Combo-chart/m-p/1762051#M58929</link>
      <description>&lt;P&gt;hII&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/129202"&gt;@divyathomas&lt;/a&gt;&amp;nbsp;, my suggestion is&amp;nbsp; :too many columns, use a table&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2020 19:53:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-more-than-15-measures-in-Combo-chart/m-p/1762051#M58929</guid>
      <dc:creator>QFabian</dc:creator>
      <dc:date>2020-11-16T19:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to add more than 15 measures in Combo chart?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-more-than-15-measures-in-Combo-chart/m-p/1762111#M58939</link>
      <description>&lt;P&gt;the first time i saw the video where the combo chart was used to create the stacked bar with a line i was amazed.&amp;nbsp; the next evolution to that was remove the hard coding:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;data:
load 'Value' &amp;amp; (floor(rand()*20)+1) as dim, date(today()-floor(rand()*15)) as Date, floor(rand()*1000)/100 as Amount;
load 1 as num AutoGenerate(500);

set vDim1= =subfield(concat(distinct dim,','),',',1);
set vDim2= =subfield(concat(distinct dim,','),',',2);
set vDim3= =subfield(concat(distinct dim,','),',',3);
set vDim4= =subfield(concat(distinct dim,','),',',4);
set vDim5= =subfield(concat(distinct dim,','),',',5);
set vDim6= =subfield(concat(distinct dim,','),',',6);
set vDim7= =subfield(concat(distinct dim,','),',',7);
set vDim8= =subfield(concat(distinct dim,','),',',8);
set vDim9= =subfield(concat(distinct dim,','),',',9);
set vDim10= =subfield(concat(distinct dim,','),',',10);
set vDim11= =subfield(concat(distinct dim,','),',',11);
set vDim12= =subfield(concat(distinct dim,','),',',12);
set vDim13= =subfield(concat(distinct dim,','),',',13);
set vDim14= =subfield(concat(distinct dim,','),',',14);
set vDim15= =subfield(concat(distinct dim,','),',',15);
set vDim16= =subfield(concat(distinct dim,','),',',16);
set vDim17= =subfield(concat(distinct dim,','),',',17);
set vDim18= =subfield(concat(distinct dim,','),',',18);
set vDim19= =subfield(concat(distinct dim,','),',',19);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;obviously, the stack should be finite.&amp;nbsp; use the dimension:&lt;BR /&gt;=vDim1&lt;/P&gt;&lt;P&gt;expression&lt;BR /&gt;= sum({&amp;lt;dim={'$(vDim1)'}&amp;gt;}Amount)&amp;nbsp; also, add a condition =count( distinct dim)&amp;gt;=1&lt;BR /&gt;&lt;BR /&gt;then just replicate it.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;but that does not address your question.&amp;nbsp; i did a combo using 20 dimensions (see attached)&amp;nbsp; &amp;nbsp;yes it is possible.&amp;nbsp; maybe there was just a problem with your expression.&amp;nbsp; i had the same problem with combo charts before and it was so easy to blame it&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 00:29:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-more-than-15-measures-in-Combo-chart/m-p/1762111#M58939</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2020-11-17T00:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to add more than 15 measures in Combo chart?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-more-than-15-measures-in-Combo-chart/m-p/1762112#M58940</link>
      <description>&lt;P&gt;sorry&amp;nbsp; correction:&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;obviously, the stack should be finite.&amp;nbsp; use the &lt;STRIKE&gt;dimension&lt;/STRIKE&gt;: following as label:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;=vDim1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;also in the picture, i just kept copying the expression and didnt bother to change the numbers&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 00:32:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-more-than-15-measures-in-Combo-chart/m-p/1762112#M58940</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2020-11-17T00:32:00Z</dc:date>
    </item>
  </channel>
</rss>

