<?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: Color code the last value in matrix hierarchy before null value in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Color-code-the-last-value-in-matrix-hierarchy-before-null-value/m-p/2870676#M92611</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="349489" data-lia-user-login="daXtreme" class="lia-mention lia-mention-user"&gt;daXtreme&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the picture below, C and its count, F and its count and Q and its count to be colored as red. So that people would know that is the last of hierarchy.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
    <pubDate>Fri, 28 Oct 2022 11:55:18 GMT</pubDate>
    <dc:creator>bharukc</dc:creator>
    <dc:date>2022-10-28T11:55:18Z</dc:date>
    <item>
      <title>Color code the last value in matrix hierarchy before null value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Color-code-the-last-value-in-matrix-hierarchy-before-null-value/m-p/2868983#M92528</link>
      <description>&lt;P&gt;I am creating a hierachy&lt;/P&gt;&lt;P&gt;Id level 1, level 2, level 3 level 4 level 5&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. &amp;nbsp; A. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;B. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; C&lt;/P&gt;&lt;P&gt;2. &amp;nbsp; A. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;D. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; E. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;F&lt;/P&gt;&lt;P&gt;3. &amp;nbsp; M. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; N. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;O. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; P. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Q&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With the code below,&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Measure = 
IF(
    ISINSCOPE('Table'[level 5]),
    IF(MAX('Table'[level 5]) = BLANK(),BLANK(),COUNT('Table'[Id])),
    IF(ISINSCOPE('Table'[level 4]),
    IF(MAX('Table'[level 4]) = BLANK(),BLANK(),COUNT('Table'[Id])),
    IF(ISINSCOPE('Table'[level 3]),
    IF(MAX('Table'[level 3]) = BLANK(),BLANK(),COUNT('Table'[Id])),
    IF(ISINSCOPE('Table'[level 2]),
    IF(MAX('Table'[level 2]) = BLANK(),BLANK(),COUNT('Table'[Id])),
    IF(ISINSCOPE('Table'[level 1]),
    IF(MAX('Table'[level 1]) = BLANK(),BLANK(),COUNT('Table'[Id]))
    ))))
    )&lt;/PRE&gt;&lt;P&gt;I was able to remove nulls in the hierarchy. I want to know if there is a way to tell the user by color coding the font of level name when it reaches the last hierarchy level before null starts.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2022 19:47:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Color-code-the-last-value-in-matrix-hierarchy-before-null-value/m-p/2868983#M92528</guid>
      <dc:creator>bharukc</dc:creator>
      <dc:date>2022-10-27T19:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Color code the last value in matrix hierarchy before null value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Color-code-the-last-value-in-matrix-hierarchy-before-null-value/m-p/2869837#M92568</link>
      <description>&lt;P&gt;There probably is but... Would you care to give an example? Maybe a picture of what such a thing should look like, please?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 07:03:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Color-code-the-last-value-in-matrix-hierarchy-before-null-value/m-p/2869837#M92568</guid>
      <dc:creator>daXtreme</dc:creator>
      <dc:date>2022-10-28T07:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Color code the last value in matrix hierarchy before null value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Color-code-the-last-value-in-matrix-hierarchy-before-null-value/m-p/2870676#M92611</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="349489" data-lia-user-login="daXtreme" class="lia-mention lia-mention-user"&gt;daXtreme&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the picture below, C and its count, F and its count and Q and its count to be colored as red. So that people would know that is the last of hierarchy.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 11:55:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Color-code-the-last-value-in-matrix-hierarchy-before-null-value/m-p/2870676#M92611</guid>
      <dc:creator>bharukc</dc:creator>
      <dc:date>2022-10-28T11:55:18Z</dc:date>
    </item>
  </channel>
</rss>

