<?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 Different collor compare values in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-collor-compare-values/m-p/3564196#M137398</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have two tables, lets say TableA &amp;amp; TableB&lt;/P&gt;&lt;P&gt;TableB contains&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;U&gt;allowed&lt;/U&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Version numbers like 13.1.5&lt;/P&gt;&lt;P&gt;TableA contains also some different Version number, but&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;U&gt;only allowed&lt;/U&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Version numbers (check from TableB) should be highlighted in TableA in "green" color.&lt;/P&gt;&lt;P&gt;If Version number is not in TableB, then hightlight Version number in "red" in TableA&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to do that?&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
    <pubDate>Sat, 02 Dec 2023 13:04:16 GMT</pubDate>
    <dc:creator>stefan321</dc:creator>
    <dc:date>2023-12-02T13:04:16Z</dc:date>
    <item>
      <title>Different collor compare values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-collor-compare-values/m-p/3564196#M137398</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have two tables, lets say TableA &amp;amp; TableB&lt;/P&gt;&lt;P&gt;TableB contains&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;U&gt;allowed&lt;/U&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Version numbers like 13.1.5&lt;/P&gt;&lt;P&gt;TableA contains also some different Version number, but&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;U&gt;only allowed&lt;/U&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Version numbers (check from TableB) should be highlighted in TableA in "green" color.&lt;/P&gt;&lt;P&gt;If Version number is not in TableB, then hightlight Version number in "red" in TableA&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to do that?&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Sat, 02 Dec 2023 13:04:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-collor-compare-values/m-p/3564196#M137398</guid>
      <dc:creator>stefan321</dc:creator>
      <dc:date>2023-12-02T13:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Different collor compare values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-collor-compare-values/m-p/3564214#M137400</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="654861" data-lia-user-login="stefan321" class="lia-mention lia-mention-user"&gt;stefan321&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Suppose you have your Version numbers from Table one on a table visual, Create the following measure, add conditional formatting &amp;gt; choose background, pick Field value as the Format Style and&amp;nbsp; pick this measure.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; CF =   IF(  NOT  CONTAINSROW( values(table2[version number] ), selectedvalue( table2[version number] ) , "red" )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Dec 2023 14:24:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-collor-compare-values/m-p/3564214#M137400</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2023-12-02T14:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Different collor compare values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-collor-compare-values/m-p/3564252#M137405</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thanks for your quick feedback!&lt;/P&gt;&lt;P&gt;unfortunately i get an error:&lt;BR /&gt;"Too few arguments were passed to the IF function. The minimum argument count for the function is 2"&lt;BR /&gt;Could you please check your code? think something is missing but i am not able to find it.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Dec 2023 15:51:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-collor-compare-values/m-p/3564252#M137405</guid>
      <dc:creator>stefan321</dc:creator>
      <dc:date>2023-12-02T15:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Different collor compare values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-collor-compare-values/m-p/3564282#M137406</link>
      <description>&lt;P&gt;Please use the following measure:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CF =&lt;BR /&gt;IF (&lt;BR /&gt;NOT CONTAINSROW (&lt;BR /&gt;VALUES ( table2[version number] ),&lt;BR /&gt;SELECTEDVALUE ( table1[version number] )&lt;BR /&gt;),&lt;BR /&gt;"red"&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Sat, 02 Dec 2023 16:15:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-collor-compare-values/m-p/3564282#M137406</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2023-12-02T16:15:59Z</dc:date>
    </item>
  </channel>
</rss>

