<?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: Gradient color on pivot table based on each row in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34910#M5893</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I actually did something like this, but then the max a min wouldn't be based on the maximum value of the row, it would be based on a fixed value... &lt;BR /&gt;I'd have to do that, but based on the max and min values of the row... &lt;/P&gt;&lt;P&gt;For example, if the number of tickets increases, 25 should be green and will appear in red&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Mar 2018 15:08:12 GMT</pubDate>
    <dc:creator>kira_whopper</dc:creator>
    <dc:date>2018-03-15T15:08:12Z</dc:date>
    <item>
      <title>Gradient color on pivot table based on each row</title>
      <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34908#M5891</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;&lt;/P&gt;&lt;P&gt;I'd like to format a gradient background color on a pivot table considering each row separately. For exemple, my goal is to show higher values in red, middle values in yellow and lower values in green, but those values are to be considered for each row separately (taking into account that a row here is assembled by the dimension "Assingment Group" and the Dates).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The final result for each row, using excel, would be this:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="XlsSample.jpg" class="jive-image image-1" height="49" src="https://community.qlik.com/legacyfs/online/196488_XlsSample.jpg" style="height: 48.8194px; width: 644px;" width="644" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the expression on the pivot table:&lt;/P&gt;&lt;P&gt;Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached is a sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 13:49:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34908#M5891</guid>
      <dc:creator>kira_whopper</dc:creator>
      <dc:date>2018-03-15T13:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: Gradient color on pivot table based on each row</title>
      <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34909#M5892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try something like this in the Background Color&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number) &amp;gt;= 25,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; RGB(155 + (100 * Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number) / 100),0,0),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number) &amp;gt;= 15,RGB(255,155 + (100*(Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number)/15)),0),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RGB(0,155 +(100 * (Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number)/10)),0)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Background.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/196497_Background.PNG" style="height: 210px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 14:55:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34909#M5892</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2018-03-15T14:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: Gradient color on pivot table based on each row</title>
      <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34910#M5893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I actually did something like this, but then the max a min wouldn't be based on the maximum value of the row, it would be based on a fixed value... &lt;BR /&gt;I'd have to do that, but based on the max and min values of the row... &lt;/P&gt;&lt;P&gt;For example, if the number of tickets increases, 25 should be green and will appear in red&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 15:08:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34910#M5893</guid>
      <dc:creator>kira_whopper</dc:creator>
      <dc:date>2018-03-15T15:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: Gradient color on pivot table based on each row</title>
      <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34911#M5894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of hard coding the values like I did, you can use the Fractile function to calculate the value based on a percentage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;=If(Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number) &amp;gt;= Fractile(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}&amp;gt;} Total Task_Number),50)&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Fractile will calculate the value that is 50% of the max.&amp;nbsp; This way the colors vary based on the total amount.&amp;nbsp; Say red above 50%, yellow above 25% else green.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The yellow does not vary much in shade.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 15:21:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34911#M5894</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2018-03-15T15:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: Gradient color on pivot table based on each row</title>
      <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34912#M5895</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;Try this expression in Background Color:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ColorMix2(&lt;/P&gt;&lt;P&gt;&amp;nbsp; If(&lt;/P&gt;&lt;P&gt;&amp;nbsp; Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Median(TOTAL &amp;lt;DeliveryCenter_AssignmentGroup&amp;gt; Aggr(Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number),Task_RefDate,DeliveryCenter_AssignmentGroup))&lt;/P&gt;&lt;P&gt;&amp;nbsp; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp; Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number)&lt;/P&gt;&lt;P&gt;&amp;nbsp; -&lt;/P&gt;&lt;P&gt;&amp;nbsp; Min(TOTAL &amp;lt;DeliveryCenter_AssignmentGroup&amp;gt; Aggr(Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number),Task_RefDate,DeliveryCenter_AssignmentGroup))&lt;/P&gt;&lt;P&gt;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp; /&lt;/P&gt;&lt;P&gt;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp; Median(TOTAL &amp;lt;DeliveryCenter_AssignmentGroup&amp;gt; Aggr(Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number),Task_RefDate,DeliveryCenter_AssignmentGroup))&lt;/P&gt;&lt;P&gt;&amp;nbsp; -&lt;/P&gt;&lt;P&gt;&amp;nbsp; Min(TOTAL &amp;lt;DeliveryCenter_AssignmentGroup&amp;gt; Aggr(Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number),Task_RefDate,DeliveryCenter_AssignmentGroup))&lt;/P&gt;&lt;P&gt;&amp;nbsp; ) -1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp; Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number)&lt;/P&gt;&lt;P&gt;&amp;nbsp; -&lt;/P&gt;&lt;P&gt;&amp;nbsp; Median(TOTAL &amp;lt;DeliveryCenter_AssignmentGroup&amp;gt; Aggr(Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number),Task_RefDate,DeliveryCenter_AssignmentGroup))&lt;/P&gt;&lt;P&gt;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp; /&lt;/P&gt;&lt;P&gt;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp; Max(TOTAL &amp;lt;DeliveryCenter_AssignmentGroup&amp;gt; Aggr(Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number),Task_RefDate,DeliveryCenter_AssignmentGroup))&lt;/P&gt;&lt;P&gt;&amp;nbsp; -&lt;/P&gt;&lt;P&gt;&amp;nbsp; Median(TOTAL &amp;lt;DeliveryCenter_AssignmentGroup&amp;gt; Aggr(Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number),Task_RefDate,DeliveryCenter_AssignmentGroup))&lt;/P&gt;&lt;P&gt;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp; ),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Red(), Green(), Yellow()&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saludos.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 15:48:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34912#M5895</guid>
      <dc:creator>fvelascog72</dc:creator>
      <dc:date>2018-03-15T15:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Gradient color on pivot table based on each row</title>
      <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34913#M5896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't managed to make it work. I'm stuck with the total by Group and Date. The fractile is returning the total of all items or the total for the current date only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 19:28:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34913#M5896</guid>
      <dc:creator>kira_whopper</dc:creator>
      <dc:date>2018-03-15T19:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Gradient color on pivot table based on each row</title>
      <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34914#M5897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the answer &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;BR /&gt;I'm still checking your code to see what could be, but it didn't worked here...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 19:29:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34914#M5897</guid>
      <dc:creator>kira_whopper</dc:creator>
      <dc:date>2018-03-15T19:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Gradient color on pivot table based on each row</title>
      <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34915#M5898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I found the solution, now I'm just playing to find the correct collors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This was the expression to find the max per row:&lt;/P&gt;&lt;P&gt;Max(TOTAL &amp;lt;DeliveryCenter_AssignmentGroup&amp;gt;&amp;nbsp; {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;}&lt;/P&gt;&lt;P&gt;Aggr(&lt;/P&gt;&lt;P&gt;Count(DISTINCT {&amp;lt;Task_Source = {'Incidents'}, Task_SourceType = {'Opened'}, Task_RefDate= {"&amp;gt;=$(=Date(Max(Task_RefDate)-15))"}&amp;gt;} Task_Number)&lt;/P&gt;&lt;P&gt;, Task_RefDate, DeliveryCenter_AssignmentGroup)&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on it, I just applied your concept of the Fractile, but using direct percentages. Now I just need to find the correct formula for the collors:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="XlsSample2.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/196515_XlsSample2.jpg" style="height: 199px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 20:41:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34915#M5898</guid>
      <dc:creator>kira_whopper</dc:creator>
      <dc:date>2018-03-15T20:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Gradient color on pivot table based on each row</title>
      <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34916#M5899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marco,&lt;/P&gt;&lt;P&gt;Could you help me? I have the same example to color each row.&lt;/P&gt;&lt;P&gt;My expression to calculate values is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(SUM(RISCO_C_11_14)+SUM(RISCO_D_15_30))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;before(sum({1}RISCO_A_EM_DIA))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;How can I create a gradient color following the same your conditions to higher,medium and lower values?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tks a lot!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2018 20:58:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34916#M5899</guid>
      <dc:creator>antoniodneto</dc:creator>
      <dc:date>2018-04-05T20:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Gradient color on pivot table based on each row</title>
      <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34917#M5900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Antonio, I believe you can use the solution above and just change my expression for yours.&lt;/P&gt;&lt;P&gt;If you're not able to do it, would be nice to have a sample of your application to look.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 11:17:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34917#M5900</guid>
      <dc:creator>kira_whopper</dc:creator>
      <dc:date>2018-04-13T11:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: Gradient color on pivot table based on each row</title>
      <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34918#M5901</link>
      <description>&lt;P&gt;Can you help me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Each row has you specific expression to calc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tks!!&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 15:03:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/34918#M5901</guid>
      <dc:creator>antoniodneto</dc:creator>
      <dc:date>2019-03-15T15:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Gradient color on pivot table based on each row</title>
      <link>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/1893392#M1217393</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;
&lt;P&gt;I'm trying to do something similar. but not per row just using all the table data, but I can't, needs to be similar to my old tableau table, my measure is: count(distinct([Unique Value])).&lt;/P&gt;
&lt;P&gt;The max number is the red one and min number should be gray&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JRamos_0-1644960445138.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/72370i4E7F352626530CA6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JRamos_0-1644960445138.png" alt="JRamos_0-1644960445138.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Old tableau table&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JRamos_1-1644960445226.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/72371iAA8C9ADD612F50F9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JRamos_1-1644960445226.png" alt="JRamos_1-1644960445226.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;New pivot table in QlikSense&lt;/P&gt;
&lt;P&gt;Can you guide me, thanks in advance!&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 21:30:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Gradient-color-on-pivot-table-based-on-each-row/m-p/1893392#M1217393</guid>
      <dc:creator>JRamos</dc:creator>
      <dc:date>2022-02-15T21:30:05Z</dc:date>
    </item>
  </channel>
</rss>

