<?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>article Creating Mini Chart in Qlik Sense tables in Qlik Sense Documents</title>
    <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/ta-p/1486234</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mini Charts have always been a good feature in QlikView and It's really 'frustrating' that this has not been added (yet) in Qlik Sense.&lt;/P&gt;&lt;P&gt;With hopes that the Qlik Team will think about such improvements for the next releases, let's discuss here how to create our own mini chart in a Qlik Sense Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following expressions might seem 'complicated' at first sight, but remember that It will be generic.&lt;/P&gt;&lt;P&gt;You'll only have to change your : Dimension(s) and Measure to adapt to your need.&lt;/P&gt;&lt;P&gt;Thus, their use will be very easy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's begin :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose we have:&lt;/P&gt;&lt;P&gt;As a dimension: &lt;STRONG&gt;OICA Region&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;As measures:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum(Sales) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum("Commercial Vehicle Sales")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum(Sales) / (Sum(Sales)+&lt;SPAN style="font-size: 13.3333px;"&gt;Sum("Commercial Vehicle Sales"))&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is our current table:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="157854" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/157854_Capture.PNG" style="height: 97px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, we want to add, a mini 'bar' to represent the %:&lt;/P&gt;&lt;P&gt;How to do so:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an expression:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=repeat('█', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rangemax(rangemin( ceil(((column(1)/column(2))-1)*2.5),10),0) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With that, we repeat the square sign and precise the limits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And as a text Color expression:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if( (sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales])))&amp;gt;=0.8,Green(),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if((sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales])))&amp;gt;=0.7,Yellow(),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Red()))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;&lt;STRONG&gt;Result&lt;/STRONG&gt;&lt;/SPAN&gt;:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="157855" alt="Capture.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/157855_Capture.PNG" style="height: 106px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can also Add the % in front of the bar by adding it in the expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From :&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;=repeat('█', &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rangemax(rangemin( ceil(((column(1)/column(2))-1)*2.5),10),0) &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;To:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=repeat('█', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rangemax(rangemin( ceil(((column(1)/column(2))-1)*2.5),10),0) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ) &lt;SPAN style="color: #ff0000;"&gt;&amp;amp; num((sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))),'# ##0,00%')&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #339966;"&gt;&lt;STRONG&gt;Result:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;IMG __jive_id="157859" alt="Capture.PNG" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/157859_Capture.PNG" style="height: 108px; width: 620px;" /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;You can even alter it as follow:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;repeat(chr(09608),round( sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales])) * 10))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;repeat(chr(09617),10-round( sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales])) *10))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;num((sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))),'# ##0,00%')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&amp;amp;if(sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))&amp;gt;0.7,'▲','▼')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;result:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="image-5 jive-image" src="https://community.qlik.com/legacyfs/online/161462_Capture.PNG" style="height: 119px; width: 620px;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;Now, let's suppose we want to add another mini chart, a trend one, to see the % expression by Year:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;If it has increased or decreased from a year to the next one.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;How to do so?&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Expression:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=concat(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; aggr(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(&lt;SPAN style="color: #3366ff;"&gt;(sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))) &amp;gt; above((sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))))&lt;/SPAN&gt;,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '▀',if(&lt;SPAN style="color: #3366ff;"&gt;(sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))) &amp;lt; above((sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))))&lt;/SPAN&gt;,'▄',' ')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&lt;SPAN style="color: #ff0000;"&gt;[OICA region]&lt;/SPAN&gt;, &lt;SPAN style="color: #339966;"&gt;(Year,(NUMERIC, ASCENDING))&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; ,'',&lt;SPAN style="color: #ff0000;"&gt;[OICA region]&lt;/SPAN&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wirh:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Red: Our Dimension&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;&lt;STRONG&gt;Green: The trending dimension&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; color: #3366ff;"&gt;&lt;STRONG&gt;Blue: our expression compared to the previous one (by year, the trending expression)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If expression by Year &amp;gt; expression Previous Year then , Square Up&lt;/P&gt;&lt;P&gt;If expression by Year &amp;lt; expression Previous Year then , Square down&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;&lt;STRONG&gt;Result:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="157911" alt="Capture.PNG" class="image-4 jive-image" src="https://community.qlik.com/legacyfs/online/157911_Capture.PNG" style="height: 95px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Special thanks to blog Von Heldendaten in which I found this:&lt;/P&gt;&lt;P&gt;&lt;A href="http://blog.heldendaten.net/2017/03/qlik-sense-calendar-measures-minicharts.html?utm_source=dlvr.it&amp;amp;utm_medium=linkedin" title="http://blog.heldendaten.net/2017/03/qlik-sense-calendar-measures-minicharts.html?utm_source=dlvr.it&amp;amp;utm_medium=linkedin"&gt;QlikView + Qlik Sense Blog von Heldendaten: Qlik Sense Calendar Measures &amp;amp; "Minicharts" in Tabellen.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you like it !&lt;/P&gt;&lt;P&gt;Omar,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Mar 2017 09:27:27 GMT</pubDate>
    <dc:creator>OmarBenSalem</dc:creator>
    <dc:date>2017-03-28T09:27:27Z</dc:date>
    <item>
      <title>Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/ta-p/1486234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mini Charts have always been a good feature in QlikView and It's really 'frustrating' that this has not been added (yet) in Qlik Sense.&lt;/P&gt;&lt;P&gt;With hopes that the Qlik Team will think about such improvements for the next releases, let's discuss here how to create our own mini chart in a Qlik Sense Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following expressions might seem 'complicated' at first sight, but remember that It will be generic.&lt;/P&gt;&lt;P&gt;You'll only have to change your : Dimension(s) and Measure to adapt to your need.&lt;/P&gt;&lt;P&gt;Thus, their use will be very easy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's begin :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose we have:&lt;/P&gt;&lt;P&gt;As a dimension: &lt;STRONG&gt;OICA Region&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;As measures:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum(Sales) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum("Commercial Vehicle Sales")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum(Sales) / (Sum(Sales)+&lt;SPAN style="font-size: 13.3333px;"&gt;Sum("Commercial Vehicle Sales"))&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is our current table:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="157854" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/157854_Capture.PNG" style="height: 97px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, we want to add, a mini 'bar' to represent the %:&lt;/P&gt;&lt;P&gt;How to do so:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an expression:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=repeat('█', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rangemax(rangemin( ceil(((column(1)/column(2))-1)*2.5),10),0) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With that, we repeat the square sign and precise the limits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And as a text Color expression:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if( (sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales])))&amp;gt;=0.8,Green(),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if((sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales])))&amp;gt;=0.7,Yellow(),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Red()))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;&lt;STRONG&gt;Result&lt;/STRONG&gt;&lt;/SPAN&gt;:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="157855" alt="Capture.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/157855_Capture.PNG" style="height: 106px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can also Add the % in front of the bar by adding it in the expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From :&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;=repeat('█', &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rangemax(rangemin( ceil(((column(1)/column(2))-1)*2.5),10),0) &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;To:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=repeat('█', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rangemax(rangemin( ceil(((column(1)/column(2))-1)*2.5),10),0) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ) &lt;SPAN style="color: #ff0000;"&gt;&amp;amp; num((sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))),'# ##0,00%')&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #339966;"&gt;&lt;STRONG&gt;Result:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;IMG __jive_id="157859" alt="Capture.PNG" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/157859_Capture.PNG" style="height: 108px; width: 620px;" /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;You can even alter it as follow:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;repeat(chr(09608),round( sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales])) * 10))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;repeat(chr(09617),10-round( sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales])) *10))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;num((sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))),'# ##0,00%')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&amp;amp;if(sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))&amp;gt;0.7,'▲','▼')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;result:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="image-5 jive-image" src="https://community.qlik.com/legacyfs/online/161462_Capture.PNG" style="height: 119px; width: 620px;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;Now, let's suppose we want to add another mini chart, a trend one, to see the % expression by Year:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;If it has increased or decreased from a year to the next one.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;How to do so?&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Expression:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=concat(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; aggr(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(&lt;SPAN style="color: #3366ff;"&gt;(sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))) &amp;gt; above((sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))))&lt;/SPAN&gt;,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '▀',if(&lt;SPAN style="color: #3366ff;"&gt;(sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))) &amp;lt; above((sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))))&lt;/SPAN&gt;,'▄',' ')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&lt;SPAN style="color: #ff0000;"&gt;[OICA region]&lt;/SPAN&gt;, &lt;SPAN style="color: #339966;"&gt;(Year,(NUMERIC, ASCENDING))&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; ,'',&lt;SPAN style="color: #ff0000;"&gt;[OICA region]&lt;/SPAN&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wirh:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Red: Our Dimension&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;&lt;STRONG&gt;Green: The trending dimension&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; color: #3366ff;"&gt;&lt;STRONG&gt;Blue: our expression compared to the previous one (by year, the trending expression)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If expression by Year &amp;gt; expression Previous Year then , Square Up&lt;/P&gt;&lt;P&gt;If expression by Year &amp;lt; expression Previous Year then , Square down&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;&lt;STRONG&gt;Result:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="157911" alt="Capture.PNG" class="image-4 jive-image" src="https://community.qlik.com/legacyfs/online/157911_Capture.PNG" style="height: 95px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Special thanks to blog Von Heldendaten in which I found this:&lt;/P&gt;&lt;P&gt;&lt;A href="http://blog.heldendaten.net/2017/03/qlik-sense-calendar-measures-minicharts.html?utm_source=dlvr.it&amp;amp;utm_medium=linkedin" title="http://blog.heldendaten.net/2017/03/qlik-sense-calendar-measures-minicharts.html?utm_source=dlvr.it&amp;amp;utm_medium=linkedin"&gt;QlikView + Qlik Sense Blog von Heldendaten: Qlik Sense Calendar Measures &amp;amp; "Minicharts" in Tabellen.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you like it !&lt;/P&gt;&lt;P&gt;Omar,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2017 09:27:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/ta-p/1486234</guid>
      <dc:creator>OmarBenSalem</dc:creator>
      <dc:date>2017-03-28T09:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486235#M1674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Omar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks à lot for this very interesting post &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2017 08:14:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486235#M1674</guid>
      <dc:creator>brunobertels</dc:creator>
      <dc:date>2017-04-04T08:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486236#M1675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cunning yet simple.&amp;nbsp; I like it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2017 15:03:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486236#M1675</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-21T15:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486237#M1676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simple and very effective - thanks for sharing this Omar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Apr 2017 04:26:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486237#M1676</guid>
      <dc:creator>rodjager</dc:creator>
      <dc:date>2017-04-24T04:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486238#M1677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Omar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the very useful information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Apr 2017 12:08:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486238#M1677</guid>
      <dc:creator>ahaahaaha</dc:creator>
      <dc:date>2017-04-27T12:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486239#M1678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just copy and paste them: &lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;▁▂▃▄▅▆▇█&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{"▁▂▃▄▅▆▇█▇▆▅▄▃▂▁","▂▁▄▃▆▅█▇","█▇▆▅▄▃▂▁▂▃▄▅▆▇█","▁▅█▆▅▃▂▇▄▅"}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use ORD('&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;▇&lt;/SPAN&gt;') to get CHR code. &lt;/P&gt;&lt;P&gt;Cool post. Thanks for idea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Apr 2017 12:32:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486239#M1678</guid>
      <dc:creator>stantrolav</dc:creator>
      <dc:date>2017-04-27T12:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486240#M1679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much.... It was very helpful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2017 11:02:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486240#M1679</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-26T11:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486241#M1680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice to have, can i expect any thing related same in Trend like Line chart ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 04:45:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486241#M1680</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-29T04:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486242#M1681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great idea! Thank a lot &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2017 13:32:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486242#M1681</guid>
      <dc:creator>JaMajka1</dc:creator>
      <dc:date>2017-05-31T13:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486243#M1682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got it, By help of extension &lt;A href="http://branch.qlik.com/#!/project/56f33f1e4a4bce4cf138ba00" title="http://branch.qlik.com/#!/project/56f33f1e4a4bce4cf138ba00"&gt;Qlik Branch&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2017 16:27:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486243#M1682</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-31T16:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486244#M1683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can someone give me a simple example of using mini chart in qlik sense?&lt;/P&gt;&lt;P&gt;I don't succeed apply the example from this page. My result is the same graphic image on all the column of table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Magdalena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2017 08:01:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486244#M1683</guid>
      <dc:creator>magdalenatudose</dc:creator>
      <dc:date>2017-06-06T08:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486245#M1684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the simplest example I could imagine &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; (it works on my desktop):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[data]:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Load&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;RowNo() as ID&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;AUTOGENERATE 3;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then in the table with dimension&lt;EM&gt; ID&lt;/EM&gt; use the expression &lt;EM&gt;repeat('█',ID).&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jun 2017 19:45:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486245#M1684</guid>
      <dc:creator>JaMajka1</dc:creator>
      <dc:date>2017-06-07T19:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486246#M1685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maria,&lt;/P&gt;&lt;P&gt;Thank you for your answer...&lt;/P&gt;&lt;P&gt;I am new in Qlik Sense and I don't really understand what you mean.&lt;/P&gt;&lt;P&gt;Can you atash me the example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Magdalena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2017 05:56:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486246#M1685</guid>
      <dc:creator>magdalenatudose</dc:creator>
      <dc:date>2017-06-08T05:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486247#M1686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Omar, can i change the orientation of the bars to be vertical? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jun 2017 17:57:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486247#M1686</guid>
      <dc:creator>prananellutla</dc:creator>
      <dc:date>2017-06-09T17:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486248#M1687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works like a&amp;nbsp; charm.&lt;/P&gt;&lt;P&gt;The only issue is that code&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;repeat(chr(09608),round( sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales])) * 10))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;repeat(chr(09617),10-round( sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales])) *10))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;num((sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))),'# ##0,00%')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&amp;amp;if(sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales]))&amp;gt;0.7,'▲','▼')&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The two bars are not overlapping but they are in sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for the code/example! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Aug 2017 08:30:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486248#M1687</guid>
      <dc:creator>dogvilegr13</dc:creator>
      <dc:date>2017-08-28T08:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486249#M1688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Hi Omar,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Thanks for the post, It helped me a lot.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I have one requirement on the same:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Can we have multiple color in the single row for different bars? I have combined two bars in a row using&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;repeat(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'▀'&lt;/STRONG&gt;,round( sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales])) * 10))&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;&amp;amp; &lt;/STRONG&gt;&lt;/SPAN&gt;repeat(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'▀'&lt;/STRONG&gt;,10-round( sum([Car sales])/(sum([Car sales])+sum([Commercial vehicle sales])) *10))&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 13.3333px; color: #575757; font-family: arial, helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 13.3333px; color: #575757; font-family: arial, helvetica, sans-serif;"&gt;now what I need is to color both bars with different colors, is this possible to do?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 13.3333px; color: #575757; font-family: arial, helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 13.3333px; color: #575757; font-family: arial, helvetica, sans-serif;"&gt;Looking forward for your response.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 13.3333px; color: #575757; font-family: arial, helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tauceef&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Oct 2017 11:13:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486249#M1688</guid>
      <dc:creator>tauceef9</dc:creator>
      <dc:date>2017-10-16T11:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486250#M1689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Is there any way to show the negative values in above mini bar chart?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrads,&lt;/P&gt;&lt;P&gt;Sabahat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2017 07:11:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486250#M1689</guid>
      <dc:creator>sabahat_quazi</dc:creator>
      <dc:date>2017-11-22T07:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486251#M1690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;first i wanted to say i really enjoyed your post and the creativity it provides/provoke,&lt;/P&gt;&lt;P&gt;I do have a question tho,&lt;/P&gt;&lt;P&gt;I am using the last version of sense (sept') and i'm not sure if its the version's fault but i encounter a problem with sorting when using your expression to create the whiskers chart.&lt;/P&gt;&lt;P&gt;I'm not sure if its the sorting of the aggr() function or not but what happens is&lt;/P&gt;&lt;P&gt;that the string with ASCII block is sorted so that all the &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'▀'&lt;/STRONG&gt;&amp;nbsp; come first and then comes all the &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'▄' &lt;/STRONG&gt;, somthing like that: &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'▀&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;▀&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;▀&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;▀&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;▀&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;▄&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;▄&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;▄&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;▄&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;'&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'v tried changing the sort order of the field itself in the chart properties but it didn't change anything&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;Wizardo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jan 2018 23:26:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486251#M1690</guid>
      <dc:creator>wizardo</dc:creator>
      <dc:date>2018-01-15T23:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486252#M1691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Magic Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2018 17:15:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486252#M1691</guid>
      <dc:creator>seanbruton</dc:creator>
      <dc:date>2018-01-18T17:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Mini Chart in Qlik Sense tables</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486253#M1692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/211603"&gt;omarbensalem&lt;/A&gt;‌ Thank you for the post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any thoughts on showing 2 bars like this :&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2Bars.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/194390_2Bars.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 17:37:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Creating-Mini-Chart-in-Qlik-Sense-tables/tac-p/1486253#M1692</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-23T17:37:12Z</dc:date>
    </item>
  </channel>
</rss>

