<?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: Dynamic Background in Totals on Straight Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1582825#M507967</link>
    <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Your totals are an &lt;STRONG&gt;average&amp;nbsp;&lt;/STRONG&gt;so you can not assign a color from a condition in Sum(Betriebscheck.Data). Try something like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;if(Dimensionality() = 0,
	if(avg(Betriebscheck.Data)&amp;gt;0.9, green(255),
	if(avg(Betriebscheck.Data)&amp;gt;0.8, Yellow(255),
	if(avg(Betriebscheck.Data)&amp;gt;0.1, rgb(255,80,11))))
,
	if(sum(Betriebscheck.Data)&amp;gt;0.9,green(255),
	if(sum(Betriebscheck.Data)&amp;gt;0.8 ,Yellow(255),
	if(sum(Betriebscheck.Data)&amp;gt;0.1, rgb(255,80,11))))
)&lt;/LI-CODE&gt;&lt;P&gt;if dimensionality()=0 then it is a "total" cell. Thus, I choose a color depending on cell type: I use AVG for total cells and SUM for regular ones.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jaime.&lt;/P&gt;</description>
    <pubDate>Tue, 21 May 2019 13:58:35 GMT</pubDate>
    <dc:creator>jaibau1993</dc:creator>
    <dc:date>2019-05-21T13:58:35Z</dc:date>
    <item>
      <title>Dynamic Background in Totals on Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1582649#M507964</link>
      <description>&lt;P&gt;Hey Qlikkers,&lt;/P&gt;&lt;P&gt;i tried to build a Straight Table but the Totals Row kills me. For each Column i have an Expression how to format the Cell, but the Total Row does not really care about that. Any ideas?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Bildschirmfoto 2019-05-21 um 12.18.27.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/12421i767D32FFB3614057/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bildschirmfoto 2019-05-21 um 12.18.27.png" alt="Bildschirmfoto 2019-05-21 um 12.18.27.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 10:21:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1582649#M507964</guid>
      <dc:creator>dominikkeller</dc:creator>
      <dc:date>2019-05-21T10:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Background in Totals on Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1582678#M507965</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Could you share a sample of data so we can test?&lt;/P&gt;&lt;P&gt;Jaime&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 11:36:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1582678#M507965</guid>
      <dc:creator>jaibau1993</dc:creator>
      <dc:date>2019-05-21T11:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Background in Totals on Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1582808#M507966</link>
      <description>&lt;P&gt;Hey Jaime,&lt;/P&gt;&lt;P&gt;here is a Test Version.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 13:43:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1582808#M507966</guid>
      <dc:creator>dominikkeller</dc:creator>
      <dc:date>2019-05-21T13:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Background in Totals on Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1582825#M507967</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Your totals are an &lt;STRONG&gt;average&amp;nbsp;&lt;/STRONG&gt;so you can not assign a color from a condition in Sum(Betriebscheck.Data). Try something like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;if(Dimensionality() = 0,
	if(avg(Betriebscheck.Data)&amp;gt;0.9, green(255),
	if(avg(Betriebscheck.Data)&amp;gt;0.8, Yellow(255),
	if(avg(Betriebscheck.Data)&amp;gt;0.1, rgb(255,80,11))))
,
	if(sum(Betriebscheck.Data)&amp;gt;0.9,green(255),
	if(sum(Betriebscheck.Data)&amp;gt;0.8 ,Yellow(255),
	if(sum(Betriebscheck.Data)&amp;gt;0.1, rgb(255,80,11))))
)&lt;/LI-CODE&gt;&lt;P&gt;if dimensionality()=0 then it is a "total" cell. Thus, I choose a color depending on cell type: I use AVG for total cells and SUM for regular ones.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jaime.&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 13:58:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1582825#M507967</guid>
      <dc:creator>jaibau1993</dc:creator>
      <dc:date>2019-05-21T13:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Background in Totals on Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1582829#M507968</link>
      <description>&lt;P&gt;for showing the value in total you are using average of rows&lt;/P&gt;&lt;P&gt;for the background color you are only using sum(Betriebscheck_Data)! BUT the sum(Betriebscheck_Data) for total is 3,497!!!&amp;nbsp;and so green is the correct color&lt;BR /&gt;You may use avg instead of sum for the background color.&lt;BR /&gt;Or you define the colors in Visual Cues for the field Betriebscheck&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 14:01:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1582829#M507968</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-21T14:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Background in Totals on Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1583254#M507969</link>
      <description>Work's perfect. Thank you</description>
      <pubDate>Wed, 22 May 2019 10:15:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Background-in-Totals-on-Straight-Table/m-p/1583254#M507969</guid>
      <dc:creator>dominikkeller</dc:creator>
      <dc:date>2019-05-22T10:15:44Z</dc:date>
    </item>
  </channel>
</rss>

