<?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 How to gradient Cell background in straight table? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-gradient-Cell-background-in-straight-table/m-p/1920640#M75784</link>
    <description>&lt;P&gt;&lt;STRONG&gt;How to get the gradient shade from green to red on the cell background?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Dimension is Product Name&lt;/LI&gt;
&lt;LI&gt;Measure is the percentage of order completed.&lt;/LI&gt;
&lt;LI&gt;My measure expression is&amp;nbsp; &lt;STRONG style="font-family: inherit;"&gt;Sum([Completed]) /sum( [Scheduled])&lt;/STRONG&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If higher the number the redder it should get. below is the RGB color that I have used in other charts, so I would love a gradient background on that table&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;RED = RGB( 210,34,45)&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;GREEN = RGB(35,136,35)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 20 Apr 2022 19:14:54 GMT</pubDate>
    <dc:creator>lwp89</dc:creator>
    <dc:date>2022-04-20T19:14:54Z</dc:date>
    <item>
      <title>How to gradient Cell background in straight table?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-gradient-Cell-background-in-straight-table/m-p/1920640#M75784</link>
      <description>&lt;P&gt;&lt;STRONG&gt;How to get the gradient shade from green to red on the cell background?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Dimension is Product Name&lt;/LI&gt;
&lt;LI&gt;Measure is the percentage of order completed.&lt;/LI&gt;
&lt;LI&gt;My measure expression is&amp;nbsp; &lt;STRONG style="font-family: inherit;"&gt;Sum([Completed]) /sum( [Scheduled])&lt;/STRONG&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If higher the number the redder it should get. below is the RGB color that I have used in other charts, so I would love a gradient background on that table&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;RED = RGB( 210,34,45)&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;GREEN = RGB(35,136,35)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2022 19:14:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-gradient-Cell-background-in-straight-table/m-p/1920640#M75784</guid>
      <dc:creator>lwp89</dc:creator>
      <dc:date>2022-04-20T19:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to gradient Cell background in straight table?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-gradient-Cell-background-in-straight-table/m-p/1920762#M75794</link>
      <description>&lt;P&gt;Hi, maybe something like this?:&lt;/P&gt;
&lt;P&gt;colormix1(Sum([Completed])/Sum([Scheduled]), RGB(210,34,45), RGB(35,136,35))&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2022 06:19:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-gradient-Cell-background-in-straight-table/m-p/1920762#M75794</guid>
      <dc:creator>justISO</dc:creator>
      <dc:date>2022-04-21T06:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to gradient Cell background in straight table?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-gradient-Cell-background-in-straight-table/m-p/1920881#M75803</link>
      <description>&lt;P&gt;You can also manually calculate the gradient RGB based on the rank&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Try below&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RGB(&lt;/P&gt;
&lt;P&gt;//R&lt;BR /&gt;35 + &lt;BR /&gt;(&lt;BR /&gt;((210-35)/(Count(distinct total &lt;STRONG&gt;Product)-1)&lt;/STRONG&gt; ) * (rank(&lt;STRONG&gt;Sum([Completed]) /sum( [Scheduled])&lt;/STRONG&gt;)-1) &lt;BR /&gt;)&lt;BR /&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;//G&lt;/SPAN&gt;&lt;BR /&gt;136 -&lt;BR /&gt;(&lt;BR /&gt;((136-34)/(Count(distinct total &lt;STRONG&gt;Product&lt;/STRONG&gt;)-1) ) * (rank(&lt;STRONG&gt;Sum([Completed]) /sum( [Scheduled])&lt;/STRONG&gt;)-1) &lt;BR /&gt;)&lt;BR /&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;//B&lt;/SPAN&gt;&lt;BR /&gt;35 + &lt;BR /&gt;(&lt;BR /&gt;((45-35)/(Count(distinct total &lt;STRONG&gt;Product)-1)&lt;/STRONG&gt; ) * (rank(&lt;STRONG&gt;Sum([Completed]) /sum( [Scheduled])&lt;/STRONG&gt;)-1) &lt;BR /&gt;) &lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2022 11:05:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-gradient-Cell-background-in-straight-table/m-p/1920881#M75803</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-04-21T11:05:06Z</dc:date>
    </item>
  </channel>
</rss>

