<?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: Conditional Formatiing help in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatiing-help/m-p/3828973#M149727</link>
    <description>&lt;P&gt;I get error msg "&amp;nbsp;&lt;SPAN&gt;multiple values was supplied where a single value was expected" . Is it because of duplicated data in it. Please help with resolution&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Apr 2024 03:22:13 GMT</pubDate>
    <dc:creator>pmadam</dc:creator>
    <dc:date>2024-04-11T03:22:13Z</dc:date>
    <item>
      <title>Conditional Formatiing help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatiing-help/m-p/3825032#M149575</link>
      <description>&lt;P&gt;Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help with having condional formating added in colors or icons for values when greater compared to previours year.&lt;/P&gt;&lt;P&gt;Eg /: countdata in values if its igreater than competitor previous year, it should give be green else red.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 22:54:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatiing-help/m-p/3825032#M149575</guid>
      <dc:creator>pmadam</dc:creator>
      <dc:date>2024-04-09T22:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Formatiing help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatiing-help/m-p/3825326#M149582</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="76400" data-lia-user-login="pmadam" class="lia-mention lia-mention-user"&gt;pmadam&lt;/a&gt;&amp;nbsp;，&lt;BR /&gt;Here some steps that I want to share, you can check them if they suitable for your requirement.&lt;BR /&gt;Here is my test data:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Create a column&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Color = 
VAR _t = 'Table'[Domain]
RETURN
IF(
    ISNUMBER(
        LOOKUPVALUE(
            'Table'[TotalCount],
            'Table'[Domain],
            _t,
            'Table'[PriceDate],
            DATEADD('Table'[PriceDate], -1, YEAR)
        )
    ),
    IF(
        'Table'[TotalCount] &amp;gt;
        LOOKUPVALUE(
            'Table'[TotalCount],
            'Table'[Domain],
            _t,
            'Table'[PriceDate],
            DATEADD('Table'[PriceDate], -1, YEAR)
        ),
        "green",
        "red"
    ),
    "green" 
)&lt;/LI-CODE&gt;
&lt;P&gt;Use the column as the filed value of conditional foramtting of the [TotalCount]&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Final output&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Albert He&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&lt;EM&gt;&lt;STRONG&gt; helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2024 02:47:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatiing-help/m-p/3825326#M149582</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-10T02:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Formatiing help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatiing-help/m-p/3828973#M149727</link>
      <description>&lt;P&gt;I get error msg "&amp;nbsp;&lt;SPAN&gt;multiple values was supplied where a single value was expected" . Is it because of duplicated data in it. Please help with resolution&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 03:22:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatiing-help/m-p/3828973#M149727</guid>
      <dc:creator>pmadam</dc:creator>
      <dc:date>2024-04-11T03:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Formatiing help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatiing-help/m-p/3840729#M150153</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="76400" data-lia-user-login="pmadam" class="lia-mention lia-mention-user"&gt;pmadam&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;According to your description, this error occurs when two values are compared to each other, and you need to give both sides of the equation unique values to compare. In the previous code, the applicable case was to create a calculated column instead of measure.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Albert He&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&lt;EM&gt;&lt;STRONG&gt; helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt; &lt;/EM&gt;to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2024 09:21:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatiing-help/m-p/3840729#M150153</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-16T09:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Formatiing help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatiing-help/m-p/3864999#M150985</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="76400" data-lia-user-login="pmadam" class="lia-mention lia-mention-user"&gt;pmadam&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Whether the problem has been solved. If there are other related issues you can continue to provide details below.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Albert He&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 09:52:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatiing-help/m-p/3864999#M150985</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-24T09:52:40Z</dc:date>
    </item>
  </channel>
</rss>

