<?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: How to incorporate performance icons into a footnote expression in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-incorporate-performance-icons-into-a-footnote-expression/m-p/2422417#M95803</link>
    <description>&lt;P&gt;Thank you again&lt;/P&gt;</description>
    <pubDate>Thu, 22 Feb 2024 14:57:31 GMT</pubDate>
    <dc:creator>kwschramm</dc:creator>
    <dc:date>2024-02-22T14:57:31Z</dc:date>
    <item>
      <title>How to incorporate performance icons into a footnote expression</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-incorporate-performance-icons-into-a-footnote-expression/m-p/2421371#M95701</link>
      <description>&lt;P&gt;I've historically use the footnote on a KPI to show prior period metrics (preferred over the 2nd KPI option and the "limit' color/symbol approach) as there is a little more flexibility (able to show both last year $ and % of change in the same footnote expression).&amp;nbsp; Formatting is limited to font, font color, bold etc in presentation\styling section.&lt;/P&gt;
&lt;P&gt;I have seen examples before where developers imbed a red down arrow and green up arrows in the footnote that introduces colors to highlight performance but I have never actually tried it.&amp;nbsp; I seem to recall seeing CHR() stuff but don't have any samples.&lt;/P&gt;
&lt;P&gt;Anyone have an example script that they can publish here?&amp;nbsp; I don't see any examples anywhere in the community.&amp;nbsp; If there is anything "tricky" about getting the images into the script, that would also be helpful&amp;nbsp; Pretty sure they are not imported through the typical app media upload.&lt;/P&gt;
&lt;P&gt;THANKS in advance for anyone who has some samples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 18:30:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-incorporate-performance-icons-into-a-footnote-expression/m-p/2421371#M95701</guid>
      <dc:creator>kwschramm</dc:creator>
      <dc:date>2024-02-20T18:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to incorporate performance icons into a footnote expression</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-incorporate-performance-icons-into-a-footnote-expression/m-p/2421681#M95728</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this as custom format in your expression&amp;nbsp;&lt;/P&gt;
&lt;P&gt;▲ #,##0;▼ #,##0&lt;/P&gt;
&lt;P&gt;it could be&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;num( myMesure , '▲ #,##0;▼ #,##0' )&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then add in Text Color Expression:&lt;/P&gt;
&lt;P&gt;if(Value=1,Green(),Red())&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or using chr()&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for example :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;=if(sum(Revenu)-Sum(BudgetAmount)&amp;gt;0,chr(9650),chr(9660))&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Feb 2024 11:25:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-incorporate-performance-icons-into-a-footnote-expression/m-p/2421681#M95728</guid>
      <dc:creator>brunobertels</dc:creator>
      <dc:date>2024-02-21T11:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to incorporate performance icons into a footnote expression</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-incorporate-performance-icons-into-a-footnote-expression/m-p/2421771#M95736</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/48554"&gt;@brunobertels&lt;/a&gt;&amp;nbsp;- This is a great example and using the last sample, I am easily able to get the arrows.&amp;nbsp; The only thing that I don't know how to do is color them.&amp;nbsp; Here is my latest (its a little hacky but works for me).&lt;/P&gt;
&lt;P&gt;Any ideas on the colored icons?&amp;nbsp; Thanks again for your help on this.&lt;/P&gt;
&lt;P&gt;=If ([Sales % Of Change]&amp;gt;0,&lt;BR /&gt;'Prior Period ' &amp;amp; Num([Sales PP],MoneyFormat) &amp;amp; ', UP ' &lt;STRONG&gt;&amp;amp; chr(9650)&lt;/STRONG&gt; &amp;amp; Num([Sales % Of Change], '###.0%'),&lt;BR /&gt;'Prior Period ' &amp;amp; Num([Sales PP],MoneyFormat) &amp;amp; ', DOWN ' &lt;STRONG&gt;&amp;amp; chr(9660&lt;/STRONG&gt;) &amp;amp; Num([Sales % Of Change], '###.0%'))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 14:15:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-incorporate-performance-icons-into-a-footnote-expression/m-p/2421771#M95736</guid>
      <dc:creator>kwschramm</dc:creator>
      <dc:date>2024-02-21T14:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to incorporate performance icons into a footnote expression</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-incorporate-performance-icons-into-a-footnote-expression/m-p/2422105#M95760</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure you can apply color coding in foot line of KPI object.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So rather than use chr() you can replace it with emoji : Qliksense does support emoji.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a red down arrow&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":red_triangle_pointed_down:"&gt;🔻&lt;/span&gt; but no green up arrow&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;=If ([Sales % Of Change]&amp;gt;0,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;'Prior Period ' &amp;amp; Num([Sales PP],MoneyFormat) &amp;amp; ', UP '&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&amp;amp; '&lt;span class="lia-unicode-emoji" title=":heavy_check_mark:"&gt;✔️&lt;/span&gt;'&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&amp;amp; Num([Sales % Of Change], '###.0%'),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;'Prior Period ' &amp;amp; Num([Sales PP],MoneyFormat) &amp;amp; ', DOWN '&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&amp;amp; '&lt;span class="lia-unicode-emoji" title=":red_triangle_pointed_down:"&gt;🔻&lt;/span&gt;'&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&amp;amp; Num([Sales % Of Change], '###.0%'))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Find emoji here :&amp;nbsp;&lt;A href="https://emojipedia.org/symbols" target="_self"&gt;https://emojipedia.org/symbols&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 08:26:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-incorporate-performance-icons-into-a-footnote-expression/m-p/2422105#M95760</guid>
      <dc:creator>brunobertels</dc:creator>
      <dc:date>2024-02-22T08:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to incorporate performance icons into a footnote expression</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-incorporate-performance-icons-into-a-footnote-expression/m-p/2422417#M95803</link>
      <description>&lt;P&gt;Thank you again&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 14:57:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-incorporate-performance-icons-into-a-footnote-expression/m-p/2422417#M95803</guid>
      <dc:creator>kwschramm</dc:creator>
      <dc:date>2024-02-22T14:57:31Z</dc:date>
    </item>
  </channel>
</rss>

