<?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 Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;amp;NO) in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3110106#M109815</link>
    <description>&lt;P&gt;Need to identify data whether live or not by child ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Raw Data:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Output:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If live = yes,"Green"&lt;/P&gt;&lt;P&gt;IF live = no,"Red"&lt;/P&gt;&lt;P&gt;If live is combination of yes &amp;amp;&amp;amp; NO then it's Orange".&lt;/P&gt;&lt;P&gt;Could you help me here dax to get 3 colors on coonditinal formating.&lt;/P&gt;&lt;P&gt;Note: slicer&amp;nbsp;: date range from date dimension.&lt;/P&gt;</description>
    <pubDate>Fri, 03 Mar 2023 11:19:07 GMT</pubDate>
    <dc:creator>VikramAdi</dc:creator>
    <dc:date>2023-03-03T11:19:07Z</dc:date>
    <item>
      <title>Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3110106#M109815</link>
      <description>&lt;P&gt;Need to identify data whether live or not by child ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Raw Data:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Output:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If live = yes,"Green"&lt;/P&gt;&lt;P&gt;IF live = no,"Red"&lt;/P&gt;&lt;P&gt;If live is combination of yes &amp;amp;&amp;amp; NO then it's Orange".&lt;/P&gt;&lt;P&gt;Could you help me here dax to get 3 colors on coonditinal formating.&lt;/P&gt;&lt;P&gt;Note: slicer&amp;nbsp;: date range from date dimension.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2023 11:19:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3110106#M109815</guid>
      <dc:creator>VikramAdi</dc:creator>
      <dc:date>2023-03-03T11:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3110210#M109823</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="523821" data-lia-user-login="VikramAdi" class="lia-mention lia-mention-user"&gt;VikramAdi&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;You can create a new column in your table for Live Colour with below DAX expression:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Live Colour = IF(CALCULATE(COUNTROWS('Table'), FILTER(FILTER (&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table',&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table'[Parent] = EARLIER ('Table'[Parent])&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; 'Table'[Child] = EARLIER ( 'Table'[Child] )&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ), 'Table'[Live] ="no")) = CALCULATE(COUNTROWS('Table'), FILTER (&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table',&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table'[Parent] = EARLIER ('Table'[Parent])&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; 'Table'[Child] = EARLIER ( 'Table'[Child] )&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; )) , "Red",IF(CALCULATE(COUNTROWS('Table'), FILTER(FILTER (&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table',&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table'[Parent] = EARLIER ('Table'[Parent])&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; 'Table'[Child] = EARLIER ( 'Table'[Child] )&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ), 'Table'[Live] ="yes")) = CALCULATE(COUNTROWS('Table'), FILTER (&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table',&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table'[Parent] = EARLIER ('Table'[Parent])&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; 'Table'[Child] = EARLIER ( 'Table'[Child] )&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; )),"Green","Orange"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please refer to the below screenshot for the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Now we have a colour based on Yes, No Live Values and will apply those colours to background colur for Live column so select Conditional formatting&amp;gt;&amp;gt; Background Colour option as shown in the below screenshot.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will allow you to select column based on which the colour will be applied. Please refer to the below screenshot for the same.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below will be the result you will see with background colour for Live Column,&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;If this answer helps, please mark it as Accepted Solution so it would help others to find the solution.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;&lt;P&gt;Inogic Professional Service Division&lt;/P&gt;&lt;P&gt;An expert technical extension for your techno-functional business needs&lt;/P&gt;&lt;P&gt;Power Platform/Dynamics 365 CRM&lt;/P&gt;&lt;P&gt;Drop an email at &lt;A href="mailto:crm@inogic.com" target="_blank"&gt;crm@inogic.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Service:&amp;nbsp; &lt;A href="http://www.inogic.com/services/" target="_blank"&gt;http://www.inogic.com/services/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Power Platform/Dynamics 365 CRM Tips and Tricks:&amp;nbsp; &lt;A href="http://www.inogic.com/blog/" target="_blank"&gt;http://www.inogic.com/blog/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2023 12:17:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3110210#M109823</guid>
      <dc:creator>SamInogic</dc:creator>
      <dc:date>2023-03-03T12:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3110942#M109885</link>
      <description>&lt;P&gt;Thanks for your responce&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="480849" data-lia-user-login="SamInogic" class="lia-mention lia-mention-user"&gt;SamInogic&lt;/a&gt;&amp;nbsp;, It's working fine. But Orange color font i want display as "Partial".&lt;/P&gt;&lt;P&gt;In live column, orange background coming like Yes, No, But required to display as&amp;nbsp;"Partial".&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>Fri, 03 Mar 2023 17:44:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3110942#M109885</guid>
      <dc:creator>VikramAdi</dc:creator>
      <dc:date>2023-03-03T17:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3110991#M109893</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="523821" data-lia-user-login="VikramAdi" class="lia-mention lia-mention-user"&gt;VikramAdi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please try&lt;/P&gt;
&lt;P&gt;FormatMeasure =&lt;BR /&gt;IF (&lt;BR /&gt;HASONEVALUE ( 'Table'[Live] ),&lt;BR /&gt;IF ( VALUES ( 'Table'[Live] ) = "Yes", "Green", "Red" ),&lt;BR /&gt;"Orange"&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2023 18:34:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3110991#M109893</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-03T18:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3112400#M110030</link>
      <description>&lt;P&gt;&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; your formula not working for both yes and No cases.&lt;/P&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="480849" data-lia-user-login="SamInogic" class="lia-mention lia-mention-user"&gt;SamInogic&lt;/a&gt;&amp;nbsp;your approach is fine but unable to get like below.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2023 15:59:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3112400#M110030</guid>
      <dc:creator>VikramAdi</dc:creator>
      <dc:date>2023-03-05T15:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3112438#M110033</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="523821" data-lia-user-login="VikramAdi" class="lia-mention lia-mention-user"&gt;VikramAdi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is a measure not a calculated column. It should work.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2023 16:34:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3112438#M110033</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-05T16:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3112467#M110036</link>
      <description>&lt;P&gt;&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, created a measure same. Yes and No (both) combination not working on above scenarios&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2023 17:15:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3112467#M110036</guid>
      <dc:creator>VikramAdi</dc:creator>
      <dc:date>2023-03-05T17:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3112476#M110039</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="523821" data-lia-user-login="VikramAdi" class="lia-mention lia-mention-user"&gt;VikramAdi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Seems I'm misunderstanding or missing something. Would you please paste some screenshots of what you have done and achieve so far to clarify the picture?&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2023 17:32:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3112476#M110039</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-05T17:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3112483#M110043</link>
      <description>&lt;P&gt;Currently acheved upto below screen.&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;But i want change font&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2023 17:43:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3112483#M110043</guid>
      <dc:creator>VikramAdi</dc:creator>
      <dc:date>2023-03-05T17:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3112494#M110048</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="523821" data-lia-user-login="VikramAdi" class="lia-mention lia-mention-user"&gt;VikramAdi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Remove the Live column from the table and place the following measure&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;New Live =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;IF (&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;HASONEVALUE ( 'Table'[Live] ),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VALUES ( 'Table'[Live] ),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"Partial"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;then you can simply format the color based on the value&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2023 18:02:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3112494#M110048</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-05T18:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3113187#M110092</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="523821" data-lia-user-login="VikramAdi" class="lia-mention lia-mention-user"&gt;VikramAdi&lt;/a&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;You can create one custom column “Live Data” with below DAX expression:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Live Data = IF(CALCULATE(COUNTROWS('Table'), FILTER(FILTER (&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table',&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table'[Parent] = EARLIER ('Table'[Parent])&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; 'Table'[Child] = EARLIER ( 'Table'[Child] )&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ), 'Table'[Live] ="no")) = CALCULATE(COUNTROWS('Table'), FILTER (&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table',&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table'[Parent] = EARLIER ('Table'[Parent])&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; 'Table'[Child] = EARLIER ( 'Table'[Child] )&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; )) , "No",IF(CALCULATE(COUNTROWS('Table'), FILTER(FILTER (&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table',&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table'[Parent] = EARLIER ('Table'[Parent])&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; 'Table'[Child] = EARLIER ( 'Table'[Child] )&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ), 'Table'[Live] ="yes")) = CALCULATE(COUNTROWS('Table'), FILTER (&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table',&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table'[Parent] = EARLIER ('Table'[Parent])&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; 'Table'[Child] = EARLIER ( 'Table'[Child] )&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; )),"Yes","Partial"))&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;And apply conditional formatting for this column with Live Colour column as explained previously which will result as shown in below screenshot.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;If this answer helps, please mark it as Accepted Solution so it would help others to find the solution.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;&lt;P&gt;Inogic Professional Service Division&lt;/P&gt;&lt;P&gt;An expert technical extension for your techno-functional business needs&lt;/P&gt;&lt;P&gt;Power Platform/Dynamics 365 CRM&lt;/P&gt;&lt;P&gt;Drop an email at &lt;A href="mailto:crm@inogic.com" target="_blank"&gt;crm@inogic.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Service:&amp;nbsp; &lt;A href="http://www.inogic.com/services/" target="_blank"&gt;http://www.inogic.com/services/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Power Platform/Dynamics 365 CRM Tips and Tricks:&amp;nbsp; &lt;A href="http://www.inogic.com/blog/" target="_blank"&gt;http://www.inogic.com/blog/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 07:39:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3113187#M110092</guid>
      <dc:creator>SamInogic</dc:creator>
      <dc:date>2023-03-06T07:39:47Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3113660#M110153</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="480849" data-lia-user-login="SamInogic" class="lia-mention lia-mention-user"&gt;SamInogic&lt;/a&gt;&amp;nbsp; it's working..&lt;/P&gt;&lt;P&gt;Having one doubt here, same concept how can we apply to the Matrix report ?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 11:28:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3113660#M110153</guid>
      <dc:creator>VikramAdi</dc:creator>
      <dc:date>2023-03-06T11:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3113706#M110155</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="523821" data-lia-user-login="VikramAdi" class="lia-mention lia-mention-user"&gt;VikramAdi&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Did the Matrix Report means the Matrix Visual in Power BI Report? If yes then you can add the Matrix Visual with below configuration and same output will be there.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Let us know if you are expecting something different from this.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;&lt;P&gt;Inogic Professional Service Division&lt;/P&gt;&lt;P&gt;An expert technical extension for your techno-functional business needs&lt;/P&gt;&lt;P&gt;Power Platform/Dynamics 365 CRM&lt;/P&gt;&lt;P&gt;Drop an email at &lt;A href="mailto:crm@inogic.com" target="_blank"&gt;crm@inogic.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Service:&amp;nbsp; &lt;A href="http://www.inogic.com/services/" target="_blank"&gt;http://www.inogic.com/services/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Power Platform/Dynamics 365 CRM Tips and Tricks:&amp;nbsp; &lt;A href="http://www.inogic.com/blog/" target="_blank"&gt;http://www.inogic.com/blog/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 11:53:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3113706#M110155</guid>
      <dc:creator>SamInogic</dc:creator>
      <dc:date>2023-03-06T11:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: Need DAX formula for Conditinal format on Yes,No and Both(Yes &amp;NO)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3113984#M110172</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="480849" data-lia-user-login="SamInogic" class="lia-mention lia-mention-user"&gt;SamInogic&lt;/a&gt;&amp;nbsp; When i add live data column in values filed it's picking First or last value. brand wise giving correct but when i'm looking at parent level, giving wrong output.&lt;/P&gt;&lt;P&gt;Also how did you mange without appear value for parent.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 13:47:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-DAX-formula-for-Conditinal-format-on-Yes-No-and-Both-Yes/m-p/3113984#M110172</guid>
      <dc:creator>VikramAdi</dc:creator>
      <dc:date>2023-03-06T13:47:05Z</dc:date>
    </item>
  </channel>
</rss>

