<?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 Conditional formatting using slicer in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-using-slicer/m-p/742218#M2323</link>
    <description>&lt;P&gt;i have a table like this,&amp;nbsp;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;and i did conditional formatting for "Test Measure" row like this,&lt;/P&gt;&lt;P&gt;&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;now i have to add a slicer for "test measure", based on slicer value selection back ground color should change. can we achieve this functionality, thanks in advance.&lt;/P&gt;</description>
    <pubDate>Wed, 17 Jul 2019 13:25:53 GMT</pubDate>
    <dc:creator>yodha</dc:creator>
    <dc:date>2019-07-17T13:25:53Z</dc:date>
    <item>
      <title>Conditional formatting using slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-using-slicer/m-p/742218#M2323</link>
      <description>&lt;P&gt;i have a table like this,&amp;nbsp;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;and i did conditional formatting for "Test Measure" row like this,&lt;/P&gt;&lt;P&gt;&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;now i have to add a slicer for "test measure", based on slicer value selection back ground color should change. can we achieve this functionality, thanks in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 13:25:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-using-slicer/m-p/742218#M2323</guid>
      <dc:creator>yodha</dc:creator>
      <dc:date>2019-07-17T13:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional formatting using slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-using-slicer/m-p/742820#M2355</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="147094" data-lia-user-login="yodha" class="lia-mention lia-mention-user"&gt;yodha&lt;/a&gt; you can use "Field Value"&amp;nbsp; instead of "Rules" in format by option. Field Value is something you can select as a measure to create the colors:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;My Color = 
VAR __slicerValue = SELECTEDVALUE( Table[SlicerColoumn[ )
RETURN
SWITHC( TRUE(),
__slicerValue &amp;gt; 100, "Red",
__slicerValue &amp;gt; 50, "Yellow",
"Green"
)&lt;/PRE&gt;
&lt;P&gt;And in Field you can chose "My Color" measure which will drive the logic for color.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it helps&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 03:10:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-using-slicer/m-p/742820#M2355</guid>
      <dc:creator>parry2k</dc:creator>
      <dc:date>2019-07-18T03:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional formatting using slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-using-slicer/m-p/748976#M2622</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for the reply, it really helped me, now am able to achieve this functionlity in my report.&lt;/P&gt;&lt;P&gt;thanks once again.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="507" data-lia-user-login="parry2k" class="lia-mention lia-mention-user"&gt;parry2k&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="147094" data-lia-user-login="yodha" class="lia-mention lia-mention-user"&gt;yodha&lt;/a&gt;you can use "Field Value"&amp;nbsp; instead of "Rules" in format by option. Field Value is something you can select as a measure to create the colors:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;My Color = 
VAR __slicerValue = SELECTEDVALUE( Table[SlicerColoumn[ )
RETURN
SWITHC( TRUE(),
__slicerValue &amp;gt; 100, "Red",
__slicerValue &amp;gt; 50, "Yellow",
"Green"
)&lt;/PRE&gt;&lt;P&gt;And in Field you can chose "My Color" measure which will drive the logic for color.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2019 11:51:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-formatting-using-slicer/m-p/748976#M2622</guid>
      <dc:creator>yodha</dc:creator>
      <dc:date>2019-07-25T11:51:51Z</dc:date>
    </item>
  </channel>
</rss>

