<?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: *** EXPRESSION *** in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528522#M748742</link>
    <description>Thanks miguelbraga &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
    <pubDate>Wed, 09 Jan 2019 16:36:33 GMT</pubDate>
    <dc:creator>solomonadjei</dc:creator>
    <dc:date>2019-01-09T16:36:33Z</dc:date>
    <item>
      <title>*** EXPRESSION ***</title>
      <link>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528481#M748737</link>
      <description>&lt;P&gt;Afternoon Experts,&lt;/P&gt;&lt;P&gt;Am struggling to write an expression to highlight or give me a background colour for the least Current Price highlighted in yellow based on my selection. I would appreciate if anyone could help.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="111114.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/3433iB805F855CCC798D5/image-size/large?v=v2&amp;amp;px=999" role="button" title="111114.PNG" alt="111114.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>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528481#M748737</guid>
      <dc:creator>solomonadjei</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: *** EXPRESSION ***</title>
      <link>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528495#M748738</link>
      <description>Hey there,&lt;BR /&gt;&lt;BR /&gt;You could make an expression like this in the background section of the Current Price expression:&lt;BR /&gt;=if(min([Current Price]) = [Current Price], Yellow(), White())&lt;BR /&gt;&lt;BR /&gt;I think that this will work for you.&lt;BR /&gt;&lt;BR /&gt;PS: please take note that the field [Current Price] need to be replaced with your expression.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;MB</description>
      <pubDate>Wed, 09 Jan 2019 16:09:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528495#M748738</guid>
      <dc:creator>miguelbraga</dc:creator>
      <dc:date>2019-01-09T16:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: *** EXPRESSION ***</title>
      <link>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528505#M748740</link>
      <description>&lt;P&gt;I think you need to include a TOTAL parm to consider all prices.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;=if(min(&lt;STRONG&gt;TOTAL&lt;/STRONG&gt; [Current Price]) = [Current Price], Yellow(), White())&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Rob&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 16:29:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528505#M748740</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-01-09T16:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: *** EXPRESSION ***</title>
      <link>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528522#M748742</link>
      <description>Thanks miguelbraga &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Wed, 09 Jan 2019 16:36:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528522#M748742</guid>
      <dc:creator>solomonadjei</dc:creator>
      <dc:date>2019-01-09T16:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: *** EXPRESSION ***</title>
      <link>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528525#M748744</link>
      <description>Thanks very much :).&lt;BR /&gt;It worked.</description>
      <pubDate>Wed, 09 Jan 2019 16:39:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528525#M748744</guid>
      <dc:creator>solomonadjei</dc:creator>
      <dc:date>2019-01-09T16:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: *** EXPRESSION ***</title>
      <link>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528528#M748746</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try creating a variable like this&lt;/P&gt;&lt;P&gt;=MIN([Current Price])&lt;/P&gt;&lt;P&gt;Then use the variable in your IF statement for background color&lt;/P&gt;&lt;P&gt;=IF(&lt;SPAN&gt;[Current Price] = $(v_MinCurrentPrice), Yellow())&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Let me know if it works&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 16:43:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/EXPRESSION/m-p/1528528#M748746</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2019-01-09T16:43:58Z</dc:date>
    </item>
  </channel>
</rss>

