<?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: Matrix values issue in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-values-issue/m-p/3991436#M154826</link>
    <description>&lt;P&gt;Thank you&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;!!&amp;nbsp;&lt;/P&gt;&lt;P&gt;This worked well to hide those columns. Nice simple approach.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For anyone wondering about the yellow highlighted totals at the bottom, I changed my PD and LGD measures to a bit with the guidance of the below:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;IF(&lt;BR /&gt;    ISINSCOPE(F_AMOUNTS[Heading]) || ISINSCOPE(F_AMOUNTS[PARTS]), &lt;BR /&gt;    SUM(F_AMOUNTS[Amount per unit]), &lt;BR /&gt;    BLANK()&lt;BR /&gt;)&lt;/PRE&gt;&lt;P&gt;which I got from&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/remove-total-of-one-column/m-p/759194" target="_blank"&gt;Solved: remove total of one column - Microsoft Fabric Community&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jun 2024 14:53:47 GMT</pubDate>
    <dc:creator>NameTaken</dc:creator>
    <dc:date>2024-06-13T14:53:47Z</dc:date>
    <item>
      <title>Matrix values issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-values-issue/m-p/3989525#M154677</link>
      <description>&lt;P&gt;Hello everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a matrix that has both classifications and triggers where we are suming values (utilizing a case statement in my SSMS query). This part is working fine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At the end of the matrix I am trying to add in some additional information, where we are taking the totals of the aforementioned and multiplying them by a PD and an LGD to get a reserve amount.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to create a couple of measures that allow me to only show these PDs, LGDs and Reserves after the totals column and not in the value rows&amp;nbsp; but they are still showing as blank column headers in the body of the matrix.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total PD =&lt;/SPAN&gt; &lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ISINSCOPE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Query2&lt;/SPAN&gt;&lt;SPAN&gt;[Trigger]&lt;/SPAN&gt;&lt;SPAN&gt;)), &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Query2&lt;/SPAN&gt;&lt;SPAN&gt;[PD]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;Blank&lt;/SPAN&gt;&lt;SPAN&gt;())&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total LGD =&lt;/SPAN&gt; &lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ISINSCOPE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Query2&lt;/SPAN&gt;&lt;SPAN&gt;[Trigger]&lt;/SPAN&gt;&lt;SPAN&gt;)), &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Query2&lt;/SPAN&gt;&lt;SPAN&gt;[LGD]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;Blank&lt;/SPAN&gt;&lt;SPAN&gt;())&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total Reserves =&lt;/SPAN&gt; &lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ISINSCOPE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Query2&lt;/SPAN&gt;&lt;SPAN&gt;[Trigger]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Query2&lt;/SPAN&gt;&lt;SPAN&gt;[Reserves]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;Blank&lt;/SPAN&gt;&lt;SPAN&gt;())&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am also having an issue with the 100% at the end of the PD/LGD totals as it is not necessary and should be blank.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to get rid of/hide the highlighted sections in the screen shot below.&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;Failed solution attempts from youtube/internet: chaning color of text to match background color, removing totals in formatting pane, right click - exclude (ends up excluding the entire column not just the yellow), resizing columns.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I dont understand why its not as easy as right click - hide. Seems overly complicated for something so simple.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you all for your time!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jun 2024 20:18:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-values-issue/m-p/3989525#M154677</guid>
      <dc:creator>NameTaken</dc:creator>
      <dc:date>2024-06-12T20:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Matrix values issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-values-issue/m-p/3989790#M154709</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="734739" data-lia-user-login="NameTaken" class="lia-mention lia-mention-user"&gt;NameTaken&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The PowerBI matrix is designed to be just that, and you can refer to the replies to this post to achieve the effect you want:&lt;BR /&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Remove-hide-column-on-Matrix-table/m-p/910083" target="_blank"&gt;Solved: Remove/hide column on Matrix table - Microsoft Fabric Community&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Matrix-Hide-a-column-in-visual-but-consider-in-calculation/m-p/3387107" target="_blank"&gt;Solved: Matrix - Hide a column in visual but consider in c... - Microsoft Fabric Community&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Jayleny&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 01:10:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-values-issue/m-p/3989790#M154709</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-06-13T01:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Matrix values issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-values-issue/m-p/3991436#M154826</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;!!&amp;nbsp;&lt;/P&gt;&lt;P&gt;This worked well to hide those columns. Nice simple approach.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For anyone wondering about the yellow highlighted totals at the bottom, I changed my PD and LGD measures to a bit with the guidance of the below:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;IF(&lt;BR /&gt;    ISINSCOPE(F_AMOUNTS[Heading]) || ISINSCOPE(F_AMOUNTS[PARTS]), &lt;BR /&gt;    SUM(F_AMOUNTS[Amount per unit]), &lt;BR /&gt;    BLANK()&lt;BR /&gt;)&lt;/PRE&gt;&lt;P&gt;which I got from&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/remove-total-of-one-column/m-p/759194" target="_blank"&gt;Solved: remove total of one column - Microsoft Fabric Community&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 14:53:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-values-issue/m-p/3991436#M154826</guid>
      <dc:creator>NameTaken</dc:creator>
      <dc:date>2024-06-13T14:53:47Z</dc:date>
    </item>
  </channel>
</rss>

