<?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: Report Builder - Expression for background colors assistance in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Report-Builder-Expression-for-background-colors-assistance/m-p/2202140#M35474</link>
    <description>&lt;P&gt;Hi Alexis. This worked perfectly. Thank you very much for helping me out!&lt;/P&gt;</description>
    <pubDate>Mon, 22 Nov 2021 18:31:26 GMT</pubDate>
    <dc:creator>JDIreland</dc:creator>
    <dc:date>2021-11-22T18:31:26Z</dc:date>
    <item>
      <title>Report Builder - Expression for background colors assistance</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Report-Builder-Expression-for-background-colors-assistance/m-p/2201720#M35472</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am building a table report in Report Builder. The report has 3 colour ranges for Red, Amber and Green.&lt;/P&gt;&lt;P&gt;Red is values equal to or more than 7&lt;/P&gt;&lt;P&gt;Green is qual to or less than 4&lt;BR /&gt;Amber is anything else (which equates to 5 and 6 in this example)&lt;BR /&gt;&lt;BR /&gt;In the 'Properties&amp;gt;Fill&amp;gt;BackgroundColour' of the desired Field, I have used a simple expression &lt;STRONG&gt;=IIF(Me.Value &amp;lt; = 4, "Green", "Orange")&lt;/STRONG&gt; to cover Green and Amber colours and it works correctly - but whatever I try to do to add in a value for Red (&amp;gt; = 7 "Red") in the expression or by other means - I just cant find the right expression to that works, mostly getting an error. Just looking to see if someone can assist here and shed light on what will work for me as I have searched tutorials extensively and either have totally missed it or my particualt usecase is not present.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 14:24:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Report-Builder-Expression-for-background-colors-assistance/m-p/2201720#M35472</guid>
      <dc:creator>JDIreland</dc:creator>
      <dc:date>2021-11-22T14:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Report Builder - Expression for background colors assistance</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Report-Builder-Expression-for-background-colors-assistance/m-p/2201951#M35473</link>
      <description>&lt;P&gt;Have you tried nesting like this?&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IIF(Me.Value &amp;lt;= 4, "Green", IIF(Me.Value &amp;gt;= 7, "Red", "Orange"))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 16:29:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Report-Builder-Expression-for-background-colors-assistance/m-p/2201951#M35473</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-11-22T16:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: Report Builder - Expression for background colors assistance</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Report-Builder-Expression-for-background-colors-assistance/m-p/2202140#M35474</link>
      <description>&lt;P&gt;Hi Alexis. This worked perfectly. Thank you very much for helping me out!&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 18:31:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Report-Builder-Expression-for-background-colors-assistance/m-p/2202140#M35474</guid>
      <dc:creator>JDIreland</dc:creator>
      <dc:date>2021-11-22T18:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: Report Builder - Expression for background colors assistance</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Report-Builder-Expression-for-background-colors-assistance/m-p/4004706#M35475</link>
      <description>&lt;P&gt;Hello, I am guessing you can figure this out, what is the syntax for two conditions?&amp;nbsp; This is what I tried and its not working for me:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IIF(Fields!PHYCAP.Value &amp;gt;= 250 &amp;amp; Fields!SUM_INA_AVAIL_.Value &amp;gt;= 500, "Aqua",IIF(Fields!PHYCAP.Value &amp;gt;= 101 &amp;amp; Fields!PHYCAP.Value &amp;lt;= 249 &amp;amp; Fields!SUM_INA_AVAIL_.Value &amp;gt;= 250, "Aqua",IIF(Fields!PHYCAP.Value &amp;lt; 100 &amp;amp; Fields!SUM_INA_AVAIL_.Value &amp;gt;= 50, "Aqua","White")))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I very much appreciate any help you can provide!&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2024 20:47:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Report-Builder-Expression-for-background-colors-assistance/m-p/4004706#M35475</guid>
      <dc:creator>88Bronco2</dc:creator>
      <dc:date>2024-06-21T20:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: Report Builder - Expression for background colors assistance</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Report-Builder-Expression-for-background-colors-assistance/m-p/4007235#M35566</link>
      <description>&lt;P&gt;FIXED IT:&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;IIF(Fields&lt;SPAN class=""&gt;!&lt;/SPAN&gt;PHYCAP.Value &lt;SPAN class=""&gt;&amp;gt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;250&lt;/SPAN&gt; &lt;SPAN class=""&gt;AND&lt;/SPAN&gt; Fields&lt;SPAN class=""&gt;!&lt;/SPAN&gt;SUM_INA_AVAIL_.Value &lt;SPAN class=""&gt;&amp;gt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;500&lt;/SPAN&gt;, "Aqua", IIF(Fields&lt;SPAN class=""&gt;!&lt;/SPAN&gt;PHYCAP.Value &lt;SPAN class=""&gt;&amp;gt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;101&lt;/SPAN&gt; &lt;SPAN class=""&gt;AND&lt;/SPAN&gt; Fields&lt;SPAN class=""&gt;!&lt;/SPAN&gt;PHYCAP.Value &lt;SPAN class=""&gt;&amp;lt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;249&lt;/SPAN&gt; &lt;SPAN class=""&gt;AND&lt;/SPAN&gt; Fields&lt;SPAN class=""&gt;!&lt;/SPAN&gt;SUM_INA_AVAIL_.Value &lt;SPAN class=""&gt;&amp;gt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;250&lt;/SPAN&gt;, "Aqua", IIF(Fields&lt;SPAN class=""&gt;!&lt;/SPAN&gt;PHYCAP.Value &lt;SPAN class=""&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;100&lt;/SPAN&gt; &lt;SPAN class=""&gt;AND&lt;/SPAN&gt; Fields&lt;SPAN class=""&gt;!&lt;/SPAN&gt;SUM_INA_AVAIL_.Value &lt;SPAN class=""&gt;&amp;gt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;50&lt;/SPAN&gt;, "Aqua", "White")))&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2024 15:27:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Report-Builder-Expression-for-background-colors-assistance/m-p/4007235#M35566</guid>
      <dc:creator>88Bronco2</dc:creator>
      <dc:date>2024-06-24T15:27:09Z</dc:date>
    </item>
  </channel>
</rss>

