<?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: heat map with pivot table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55543#M3695</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Was never able to get colormix to work, but found this extension that does exactly what I wanted::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;A href="http://branch.qlik.com/#!/project/56728f52d1e497241ae6983e"&gt;http://branch.qlik.com/#!/project/56728f52d1e497241ae6983e&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jun 2018 16:38:12 GMT</pubDate>
    <dc:creator>cluscombe</dc:creator>
    <dc:date>2018-06-06T16:38:12Z</dc:date>
    <item>
      <title>heat map with pivot table</title>
      <link>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55534#M3686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey There -&lt;/P&gt;&lt;P&gt;I have a pivot table with dates across the top (Transaction Date), codes (TCDC) down the side, and sum(Sum Amount) as the measure.&amp;nbsp; I would like to apply a heat map to make is easy to identify when sum(Sum Amount) for a specific Transaction Date is unusual as compared to the rest Transaction Dates. I have highlighted two days in the attached screenshot that I want to jump out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suspect that colormix1 is the way to go, I just cant seem to figure it out.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="pivot ss.jpg" class="jive-image image-1" src="/legacyfs/online/204305_pivot ss.jpg" style="height: 209px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 19:06:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55534#M3686</guid>
      <dc:creator>cluscombe</dc:creator>
      <dc:date>2018-06-04T19:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: heat map with pivot table</title>
      <link>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55535#M3687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's a good starting point: &lt;A _jive_internal="true" href="https://community.qlik.com/thread/200871" title="https://community.qlik.com/thread/200871"&gt;https://community.qlik.com/thread/200871&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in your case, you'll have 2 dimensions in the AGGR() function (Transaction Date and TCDC) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;look out for performance (with the number of possible dates...) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 19:37:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55535#M3687</guid>
      <dc:creator>mikaelsc</dc:creator>
      <dc:date>2018-06-04T19:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: heat map with pivot table</title>
      <link>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55536#M3688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So if I just wanted to focus on the TCDC and ignore transaction date, would my function look something like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Colormix1((sum([Sum Amount])-$(=min(aggr( sum([Sum Amount]), TCDC)) ,blue(),green()))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 20:28:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55536#M3688</guid>
      <dc:creator>cluscombe</dc:creator>
      <dc:date>2018-06-04T20:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: heat map with pivot table</title>
      <link>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55537#M3689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nop. you need the second part as well. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Colormix1((sum([Sales])-$(=min(aggr( sum([Sales]), CategoryName))))&lt;STRONG&gt;/$(=(max(aggr( sum([Sales]),CategoryName))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;-min(aggr( sum([Sales]), CategoryName))))&lt;/STRONG&gt;,white(),$(vSalmon))&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;as the whole idea is to transform the range of your values to values between 0 and 1 as expected by the colormix1 function (colormix2 is -1 to 1 )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 20:38:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55537#M3689</guid>
      <dc:creator>mikaelsc</dc:creator>
      <dc:date>2018-06-04T20:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: heat map with pivot table</title>
      <link>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55538#M3690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmm I do have positive and negative values in my dataset, does that mean I should be using colormix2?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 22:11:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55538#M3690</guid>
      <dc:creator>cluscombe</dc:creator>
      <dc:date>2018-06-04T22:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: heat map with pivot table</title>
      <link>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55539#M3691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or download a qlikview version to use the colormix wizzard... (maybe one of the only things I'd still open a qlikview for) and copy paste results in QS &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-17002"&gt;Using ColorMix In Qlikview&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 22:25:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55539#M3691</guid>
      <dc:creator>mikaelsc</dc:creator>
      <dc:date>2018-06-04T22:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: heat map with pivot table</title>
      <link>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55540#M3692</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;As colormix2 range the value between -1 an 0 , it accept 3 colors définitions in this order &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax" data-mc-conditions="Targets.NotToTranslate" style="background-color: #f4f4f4; color: #0f0f0f; font-family: Monaco,Menlo,Consolas,&amp;amp;font-size:16px; font-style: normal; font-weight: 400; margin-bottom: 10px; margin-top: 10px; text-align: left; text-indent: 0px;"&gt;&lt;SPAN class="statement" style="font-weight: bold;"&gt;Colormix2 (&lt;/SPAN&gt;&lt;SPAN class="bnf_token" style="font-family: Monaco,Menlo,Consolas,&amp;amp;font-size:12px;"&gt;Value ,ColorMinusOne , ColorOne[ , ColorZero]&lt;/SPAN&gt;&lt;SPAN class="statement" style="font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #0f0f0f; font-family: 'Open Sans',Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt; if you have negative values it may be sweetable to use colormix 2 rather than colormix1 &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2018 11:13:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55540#M3692</guid>
      <dc:creator>brunobertels</dc:creator>
      <dc:date>2018-06-05T11:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: heat map with pivot table</title>
      <link>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55541#M3693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yikes - what came out of qlikview seems even more confusing and I didnt see a place in the wizard to add TCDC:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ColorMix1 ((1+Sign(2*(Sum ([$ Amount])-RangeMin (top(total Sum ([$ Amount]),1,NoOfRows(total))))/(RangeMax (top(total Sum ([$ Amount]),1,NoOfRows(total)))-RangeMin (top(total Sum ([$ Amount]),1,NoOfRows(total))))-1)*Sqrt(Fabs((2*(Sum ([$ Amount])-RangeMin (top(total Sum ([$ Amount]),1,NoOfRows(total))))/(RangeMax (top(total Sum ([$ Amount]),1,NoOfRows(total)))-RangeMin (top(total Sum ([$ Amount]),1,NoOfRows(total))))-1))))/2, ARGB(255, 255, 0, 0), ARGB(255, 0, 255, 0))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2018 17:14:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55541#M3693</guid>
      <dc:creator>cluscombe</dc:creator>
      <dc:date>2018-06-05T17:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: heat map with pivot table</title>
      <link>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55542#M3694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following may help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/297690"&gt;color code&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;A href="https://community.qlik.com/thread/281002"&gt;Text Color Expression of a pivot with Coloring logics&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/276303"&gt;Relative Text Color expression&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2018 17:32:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55542#M3694</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2018-06-05T17:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: heat map with pivot table</title>
      <link>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55543#M3695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Was never able to get colormix to work, but found this extension that does exactly what I wanted::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;A href="http://branch.qlik.com/#!/project/56728f52d1e497241ae6983e"&gt;http://branch.qlik.com/#!/project/56728f52d1e497241ae6983e&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2018 16:38:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/heat-map-with-pivot-table/m-p/55543#M3695</guid>
      <dc:creator>cluscombe</dc:creator>
      <dc:date>2018-06-06T16:38:12Z</dc:date>
    </item>
  </channel>
</rss>

