<?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: KPI - coloration by measure field name in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/KPI-coloration-by-measure-field-name/m-p/1545991#M39324</link>
    <description>&lt;P&gt;Your idea need a master item for each kpi if I understand correctly and I already use dynamic conditions.&lt;/P&gt;&lt;P&gt;I will try to explain another time with steps and example:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create my KPI&lt;/LI&gt;&lt;LI&gt;Add 1st number : sum({ $&amp;lt;id_periode=2019&amp;gt;}[sales])&lt;/LI&gt;&lt;LI&gt;Add 2nd number :&amp;nbsp;&amp;nbsp;sum({ $&amp;lt;id_periode=2018&amp;gt;}[sales])&lt;/LI&gt;&lt;LI&gt;Add % as label of 2nd number :&amp;nbsp;Num(&amp;nbsp;sum({ $&amp;lt;id_periode=2019&amp;gt;}[sales]) /&amp;nbsp;sum({ $&amp;lt;id_periode=2018&amp;gt;}[sales]) ) - 1 , '0,00%')&lt;/LI&gt;&lt;LI&gt;Add color and symbol&amp;nbsp;:&amp;nbsp;&amp;nbsp;&lt;OL&gt;&lt;LI&gt;value &amp;lt; threshold1 = symbol 'arrow down' + 'orange'&lt;/LI&gt;&lt;LI&gt;threshold1 &amp;lt; value &amp;lt; threshold2 = symbol 'arrow right' + 'light blue'&lt;/LI&gt;&lt;LI&gt;threshold1 &amp;lt; threshold2 &amp;lt; value = symbol 'arrow up' + 'dark blue'.&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;with:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;threshold1 = sum({ $&amp;lt;id_periode=2018&amp;gt;}[sales])&lt;/LI&gt;&lt;LI&gt;threshold2 = sum({ $&amp;lt;id_periode=2018&amp;gt;}[sales])+1&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;When I change something, I have to change 1st number, 2nd, % and colors. Is it possible to say something like : threshold1 = {1st-number} ?&lt;/P&gt;</description>
    <pubDate>Mon, 18 Feb 2019 17:01:50 GMT</pubDate>
    <dc:creator>matthi0uw</dc:creator>
    <dc:date>2019-02-18T17:01:50Z</dc:date>
    <item>
      <title>KPI - coloration by measure field name</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-coloration-by-measure-field-name/m-p/1544861#M39267</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In KPI, there is 2 measures and conditional coloration :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kpi_2measures.JPG" style="width: 355px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/6059iEC880FF65B619721/image-size/large?v=v2&amp;amp;px=999" role="button" title="kpi_2measures.JPG" alt="kpi_2measures.JPG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kpi_2measures_color.JPG" style="width: 163px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/6060i2ED48DB9367E083B/image-size/large?v=v2&amp;amp;px=999" role="button" title="kpi_2measures_color.JPG" alt="kpi_2measures_color.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This exemple displays :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;measure1&amp;nbsp; = sum(dim1)&lt;/LI&gt;&lt;LI&gt;measure2 = sum(dim2)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If I change the formula (measure1 = sum(dim3), I have to change 2 fields.&lt;/P&gt;&lt;P&gt;Is it possible to set condition by name of field ({measure1} or something like that) instead of name of dimension (dim1) or expression sum(dim1) to avoid missing change ?&lt;/P&gt;&lt;P&gt;Matthieu&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 06:34:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-coloration-by-measure-field-name/m-p/1544861#M39267</guid>
      <dc:creator>matthi0uw</dc:creator>
      <dc:date>2024-11-16T06:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: KPI - coloration by measure field name</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-coloration-by-measure-field-name/m-p/1545584#M39304</link>
      <description>&lt;P&gt;Please create those measures in Master Item and apply the (Hex) code for that. That deserved the same.&lt;/P&gt;&lt;P&gt;If you want to limit data level, My suggestion to go like yours with conditions instead static.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 04:14:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-coloration-by-measure-field-name/m-p/1545584#M39304</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2019-02-18T04:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: KPI - coloration by measure field name</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-coloration-by-measure-field-name/m-p/1545991#M39324</link>
      <description>&lt;P&gt;Your idea need a master item for each kpi if I understand correctly and I already use dynamic conditions.&lt;/P&gt;&lt;P&gt;I will try to explain another time with steps and example:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create my KPI&lt;/LI&gt;&lt;LI&gt;Add 1st number : sum({ $&amp;lt;id_periode=2019&amp;gt;}[sales])&lt;/LI&gt;&lt;LI&gt;Add 2nd number :&amp;nbsp;&amp;nbsp;sum({ $&amp;lt;id_periode=2018&amp;gt;}[sales])&lt;/LI&gt;&lt;LI&gt;Add % as label of 2nd number :&amp;nbsp;Num(&amp;nbsp;sum({ $&amp;lt;id_periode=2019&amp;gt;}[sales]) /&amp;nbsp;sum({ $&amp;lt;id_periode=2018&amp;gt;}[sales]) ) - 1 , '0,00%')&lt;/LI&gt;&lt;LI&gt;Add color and symbol&amp;nbsp;:&amp;nbsp;&amp;nbsp;&lt;OL&gt;&lt;LI&gt;value &amp;lt; threshold1 = symbol 'arrow down' + 'orange'&lt;/LI&gt;&lt;LI&gt;threshold1 &amp;lt; value &amp;lt; threshold2 = symbol 'arrow right' + 'light blue'&lt;/LI&gt;&lt;LI&gt;threshold1 &amp;lt; threshold2 &amp;lt; value = symbol 'arrow up' + 'dark blue'.&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;with:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;threshold1 = sum({ $&amp;lt;id_periode=2018&amp;gt;}[sales])&lt;/LI&gt;&lt;LI&gt;threshold2 = sum({ $&amp;lt;id_periode=2018&amp;gt;}[sales])+1&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;When I change something, I have to change 1st number, 2nd, % and colors. Is it possible to say something like : threshold1 = {1st-number} ?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 17:01:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-coloration-by-measure-field-name/m-p/1545991#M39324</guid>
      <dc:creator>matthi0uw</dc:creator>
      <dc:date>2019-02-18T17:01:50Z</dc:date>
    </item>
  </channel>
</rss>

