<?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: Formating pivot chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512507#M751161</link>
    <description>&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-Documents/How-to-use-Dimensionality/ta-p/1485559" target="_blank"&gt;https://community.qlik.com/t5/QlikView-Documents/How-to-use-Dimensionality/ta-p/1485559&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 26 Nov 2018 20:08:32 GMT</pubDate>
    <dc:creator>m_woolf</dc:creator>
    <dc:date>2018-11-26T20:08:32Z</dc:date>
    <item>
      <title>Formating pivot chart</title>
      <link>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512499#M751158</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have&amp;nbsp; two dimensions (country and city) and one expression (sales). What i'am trying to,achieve is the output below (made on Excel).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="P1.jpg" style="width: 174px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/1020i5731D539EB663580/image-dimensions/174x180?v=v2" width="174" height="180" role="button" title="P1.jpg" alt="P1.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;l can't remember if it's possible with Qlikview. I think it could be esay if we can hide dimension in pivot chart. But we can't&lt;IMG id="smileysad" class="emoticon emoticon-smileysad" src="https://community.qlik.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;&lt;P&gt;For the moment i get the following chart :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="P2.jpg" style="width: 304px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/1022i2EEBA40DB9DF2B34/image-dimensions/304x225?v=v2" width="304" height="225" role="button" title="P2.jpg" alt="P2.jpg" /&gt;&lt;/span&gt;&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/Formating-pivot-chart/m-p/1512499#M751158</guid>
      <dc:creator>sergio0592</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Formating pivot chart</title>
      <link>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512505#M751159</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can get close checking 'Indent Mode' on Style tab &amp;amp; changing the Country dimension to a calculated dimension 'Total ' &amp;amp; Country.&lt;/P&gt;&lt;P&gt;Interested to see if any better suggestions.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 20:07:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512505#M751159</guid>
      <dc:creator>chrismarlow</dc:creator>
      <dc:date>2018-11-26T20:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Formating pivot chart</title>
      <link>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512506#M751160</link>
      <description>&lt;P&gt;Something like this?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 233px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/1023iC2C0D7A2B6903AEE/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;To do this, I created an island table like this in the script&lt;/P&gt;&lt;PRE&gt;Table:
LOAD * INLINE [
    Country, City, Sales
    France, Nice, 789
    France, Toulouse, 345
    Italy, Milano, 799
    Italy, Roma, 490
    Italy, Turino, 634
    UK, Liverpool, 457
    UK, London, 678
    UK, Manchester, 450
];

&lt;FONT color="#FF0000"&gt;Dim:
LOAD * INLINE [
    Dim
    1
    2
];&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;Now create a straight table like this&lt;/P&gt;&lt;P&gt;Dimension&lt;/P&gt;&lt;PRE&gt;=Pick(Dim, City, 'Total ' &amp;amp; Country)&lt;/PRE&gt;&lt;P&gt;Expression&lt;/P&gt;&lt;PRE&gt;Sum(Sales)&lt;/PRE&gt;&lt;P&gt;and sort the dimension using this&lt;/P&gt;&lt;PRE&gt;(Rank(Country)) + Dim/10&lt;/PRE&gt;&lt;P&gt;Use this for background color of expression and dimension&lt;/P&gt;&lt;PRE&gt;=If(Dim = 2, Yellow())&lt;/PRE&gt;&lt;P&gt;and use this for text formatting&lt;/P&gt;&lt;PRE&gt;=If(Dim = 2,'&amp;lt;b&amp;gt;')&lt;/PRE&gt;</description>
      <pubDate>Mon, 26 Nov 2018 20:08:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512506#M751160</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-11-26T20:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: Formating pivot chart</title>
      <link>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512507#M751161</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-Documents/How-to-use-Dimensionality/ta-p/1485559" target="_blank"&gt;https://community.qlik.com/t5/QlikView-Documents/How-to-use-Dimensionality/ta-p/1485559&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 20:08:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512507#M751161</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2018-11-26T20:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Formating pivot chart</title>
      <link>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512514#M751162</link>
      <description>&lt;P&gt;It works, great Sunny as usual &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://community.qlik.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;. Even if i can't understand how the link is made between contry and value 2 of the dim table.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 20:33:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512514#M751162</guid>
      <dc:creator>sergio0592</dc:creator>
      <dc:date>2018-11-26T20:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: Formating pivot chart</title>
      <link>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512945#M751163</link>
      <description>&lt;P&gt;can u pls explain the&amp;nbsp;(Rank(Country)) + Dim/10&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 14:12:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512945#M751163</guid>
      <dc:creator>manoranjan_321988</dc:creator>
      <dc:date>2018-11-27T14:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Formating pivot chart</title>
      <link>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512947#M751164</link>
      <description>Add the above as an expression and you will understand what i was trying to do )</description>
      <pubDate>Tue, 27 Nov 2018 14:15:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512947#M751164</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-11-27T14:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: Formating pivot chart</title>
      <link>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512964#M751165</link>
      <description>&lt;P&gt;i agree that it will make sort, but i can't understand,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;rank(country) will be 1 2 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but why adding with DIM/10 can explain deeply pls&lt;/P&gt;&lt;P&gt;example&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 14:33:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512964#M751165</guid>
      <dc:creator>manoranjan_321988</dc:creator>
      <dc:date>2018-11-27T14:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Formating pivot chart</title>
      <link>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512966#M751166</link>
      <description>I have no problem in doing so, but if I do, then you will not have a chance to learn on how to break expressions and understand what they are doing.&lt;BR /&gt;&lt;BR /&gt;Hint: Break the expression and see what it is doing&lt;BR /&gt;1) (Rank(Country)) + Dim/10&lt;BR /&gt;2) (Rank(Country))&lt;BR /&gt;3) Dim/10&lt;BR /&gt;&lt;BR /&gt;and see there values &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Nov 2018 14:36:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formating-pivot-chart/m-p/1512966#M751166</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-11-27T14:36:10Z</dc:date>
    </item>
  </channel>
</rss>

