<?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: Measure Only Showing for Some Rows in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Only-Showing-for-Some-Rows/m-p/1517339#M29554</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="270577" data-lia-user-login="Whatever1" class="lia-mention lia-mention-user"&gt;Whatever1&lt;/a&gt;&amp;nbsp;, if you want such a result,&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;you might want to try this measure&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AllBig = 
CALCULATE (
    SUM ( [Amount] ),
    Table1[Group] = "Big",
    ALLEXCEPT ( Table1, Table1[Color] )
)&lt;/LI-CODE&gt;</description>
    <pubDate>Wed, 25 Nov 2020 21:57:44 GMT</pubDate>
    <dc:creator>CNENFRNL</dc:creator>
    <dc:date>2020-11-25T21:57:44Z</dc:date>
    <item>
      <title>Measure Only Showing for Some Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Only-Showing-for-Some-Rows/m-p/1516807#M29537</link>
      <description>&lt;P&gt;I have the following data table:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I want a matrix that always compares the amounts to the big amounts. I created a measure that I thought would always give me the total of all the Big amounts:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;AllBig = calculate(sum([Amount]),Table1[Group]="Big")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;However, my matrix only shows the AllBig amounts that are in the same section and not for the other rows:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;img /&gt;&lt;P&gt;How do I get AllBig to show for all Sections?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This example isn't realistic but I tried to simplify the issue to the smallest set of data that showed the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 15:47:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Only-Showing-for-Some-Rows/m-p/1516807#M29537</guid>
      <dc:creator>Whatever1</dc:creator>
      <dc:date>2020-11-25T15:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Only Showing for Some Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Only-Showing-for-Some-Rows/m-p/1516960#M29542</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="270577" data-lia-user-login="Whatever1" class="lia-mention lia-mention-user"&gt;Whatever1&lt;/a&gt; , Try like&lt;/P&gt;
&lt;P&gt;AllBig = calculate(sum([Amount]),filter(Table1,Table1[Group]="Big"))&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:51:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Only-Showing-for-Some-Rows/m-p/1516960#M29542</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-11-25T16:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Only Showing for Some Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Only-Showing-for-Some-Rows/m-p/1517088#M29545</link>
      <description>&lt;P&gt;That makes it show on only one row:&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;</description>
      <pubDate>Wed, 25 Nov 2020 17:51:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Only-Showing-for-Some-Rows/m-p/1517088#M29545</guid>
      <dc:creator>Whatever1</dc:creator>
      <dc:date>2020-11-25T17:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Only Showing for Some Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Only-Showing-for-Some-Rows/m-p/1517339#M29554</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="270577" data-lia-user-login="Whatever1" class="lia-mention lia-mention-user"&gt;Whatever1&lt;/a&gt;&amp;nbsp;, if you want such a result,&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;you might want to try this measure&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AllBig = 
CALCULATE (
    SUM ( [Amount] ),
    Table1[Group] = "Big",
    ALLEXCEPT ( Table1, Table1[Color] )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 25 Nov 2020 21:57:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Only-Showing-for-Some-Rows/m-p/1517339#M29554</guid>
      <dc:creator>CNENFRNL</dc:creator>
      <dc:date>2020-11-25T21:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Only Showing for Some Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Only-Showing-for-Some-Rows/m-p/1517354#M29556</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="250150" data-lia-user-login="CNENFRNL" class="lia-mention lia-mention-user"&gt;CNENFRNL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you! I have been banging my head against the wall with this and just couldn't figure out why it wasn't working.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 22:18:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Only-Showing-for-Some-Rows/m-p/1517354#M29556</guid>
      <dc:creator>Whatever1</dc:creator>
      <dc:date>2020-11-25T22:18:15Z</dc:date>
    </item>
  </channel>
</rss>

