<?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 formatting DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2563988#M73013</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="28197" data-lia-user-login="Back2Basics" class="lia-mention lia-mention-user"&gt;Back2Basics&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Sorry for the misunderstanding. I mean If you can create and share a sample dummy data that simulates your situation along with example expected results&lt;/P&gt;</description>
    <pubDate>Tue, 07 Jun 2022 13:04:31 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2022-06-07T13:04:31Z</dc:date>
    <item>
      <title>Conditional formatting DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2561478#M72884</link>
      <description>&lt;P&gt;I'm trying to add some conditional formatting to a matrix. I have a matrix that has a series of outcomes and the count of Unique_ID for each outcome. I also have a dropdown on the page so that users can select an ID and the matrix highlights the outcomes for that particular ID - this is working fine using the following DAX:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;Matrix select = IF(ISFILTERED('Report measures'[Unique ID]),IF(SELECTEDVALUE('Report measures'[Unique ID]) IN VALUES (Workbook[Unique ID]), 1))&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;amp; then applying the appropriate conditional formatting.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I also have a table which has a list of 'linked' ID's. So this looks something like this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Unique ID&lt;/TD&gt;&lt;TD&gt;Linked ID&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;INT001&lt;/TD&gt;&lt;TD&gt;INT172&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;INT001&lt;/TD&gt;&lt;TD&gt;INT250&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;INT002&lt;/TD&gt;&lt;TD&gt;INT015&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to replicate the matrix that is working, as described above, so that when an ID is selected it highlights the outcomes for the Linked ID's. I have been trying several things but just can't quite get it to work. Everything is still assocaited with the Unique ID filter rather than filtering the Linked ID.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Any help is very much apprecaited.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 14:57:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2561478#M72884</guid>
      <dc:creator>Back2Basics</dc:creator>
      <dc:date>2022-06-06T14:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional formatting DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2561978#M72907</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="28197" data-lia-user-login="Back2Basics" class="lia-mention lia-mention-user"&gt;Back2Basics&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any relationship between the two tables?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 19:39:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2561978#M72907</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-06T19:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional formatting DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2563295#M72977</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;- yes, there is a relationship between the Unique ID columns in each table. The table with the linked Id's is standalone, so could remove the relationship if this is the way to do it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jun 2022 08:37:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2563295#M72977</guid>
      <dc:creator>Back2Basics</dc:creator>
      <dc:date>2022-06-07T08:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional formatting DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2563422#M72988</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="28197" data-lia-user-login="Back2Basics" class="lia-mention lia-mention-user"&gt;Back2Basics&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I'm having some difficulties&amp;nbsp;replicating your matrix. Would you please provide some sample data and perhaps&amp;nbsp;some screenshots to understand exactly what is required. Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jun 2022 09:09:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2563422#M72988</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-07T09:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional formatting DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2563935#M73010</link>
      <description>&lt;P&gt;I'm going down a different route now. Unfortunately I can't share any of the real data.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jun 2022 12:51:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2563935#M73010</guid>
      <dc:creator>Back2Basics</dc:creator>
      <dc:date>2022-06-07T12:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional formatting DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2563988#M73013</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="28197" data-lia-user-login="Back2Basics" class="lia-mention lia-mention-user"&gt;Back2Basics&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Sorry for the misunderstanding. I mean If you can create and share a sample dummy data that simulates your situation along with example expected results&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jun 2022 13:04:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-DAX/m-p/2563988#M73013</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-07T13:04:31Z</dc:date>
    </item>
  </channel>
</rss>

