<?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: DAX Help - Calculating Count at Subtotal Level in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-Calculating-Count-at-Subtotal-Level/m-p/856078#M6826</link>
    <description>&lt;P&gt;Hey Az38,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to get this to work. Thank you!&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Az38 = calculate(count('Conflicts &amp;amp; Entitlements'[Entitlement]), ALLSELECTED('Conflicts &amp;amp; Entitlements'[Entitlement]))&lt;/LI-CODE&gt;</description>
    <pubDate>Mon, 25 Nov 2019 15:17:02 GMT</pubDate>
    <dc:creator>redgun24</dc:creator>
    <dc:date>2019-11-25T15:17:02Z</dc:date>
    <item>
      <title>DAX Help - Calculating Count at Subtotal Level</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-Calculating-Count-at-Subtotal-Level/m-p/854574#M6781</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New to DAX. I'm trying to only show conflicts (1, 2, 3, 4, 5) in the below visualization that have more that one entitlement (AP Invoice Entry, AP Supplier Master, etc.). For the example below the desired end result would be to see conflicts 3 &amp;amp; 5 disappear because they only have one entitlement rather than two.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried using a filter but realized that applied at the lowest level, in this case the entitlement. Is there a way to add a measure that would calculate the # of entitlements under a given conflict? I could then use this as a slicer or to filter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2019 21:11:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-Calculating-Count-at-Subtotal-Level/m-p/854574#M6781</guid>
      <dc:creator>redgun24</dc:creator>
      <dc:date>2019-11-22T21:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Help - Calculating Count at Subtotal Level</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-Calculating-Count-at-Subtotal-Level/m-p/854610#M6787</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="188634" data-lia-user-login="redgun24" class="lia-mention lia-mention-user"&gt;redgun24&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;If I understand, you want to filter the visual. Try this measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Show only = If(MAX(Conflicts[Counter])&amp;gt;1,MAX(Conflicts[Counter]),BLANK())&lt;/LI-CODE&gt;&lt;P&gt;my table is Conflicts.&lt;BR /&gt;Let me know if you have any questions.&lt;BR /&gt;&lt;BR /&gt;If this solves your issues, please mark it as the &lt;STRONG&gt;solution, &lt;/STRONG&gt;so that others can find it easily. &lt;STRONG&gt;Kudos &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;are nice too.&lt;BR /&gt;Nathaniel&lt;BR /&gt;&lt;BR /&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, 22 Nov 2019 22:28:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-Calculating-Count-at-Subtotal-Level/m-p/854610#M6787</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2019-11-22T22:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Help - Calculating Count at Subtotal Level</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-Calculating-Count-at-Subtotal-Level/m-p/854612#M6788</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="188634" data-lia-user-login="redgun24" class="lia-mention lia-mention-user"&gt;redgun24&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try to add measure in your table&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure = calculate(count('Table'[Entitlement]);ALLSELECTED('Table'[Entitlement]))&lt;/LI-CODE&gt;&lt;P&gt;then in Filters pane add "Measure" to a "Filters on this visual" and check Measure is greater than 1&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2019 22:32:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-Calculating-Count-at-Subtotal-Level/m-p/854612#M6788</guid>
      <dc:creator>az38</dc:creator>
      <dc:date>2019-11-22T22:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Help - Calculating Count at Subtotal Level</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-Calculating-Count-at-Subtotal-Level/m-p/856043#M6825</link>
      <description>&lt;P&gt;Hey Nathaniel,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the reply. I tried the formula, assuming that your Counter is my Count of Entitlements but was getting the below error. Am I missing something?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 14:58:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-Calculating-Count-at-Subtotal-Level/m-p/856043#M6825</guid>
      <dc:creator>redgun24</dc:creator>
      <dc:date>2019-11-25T14:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Help - Calculating Count at Subtotal Level</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-Calculating-Count-at-Subtotal-Level/m-p/856078#M6826</link>
      <description>&lt;P&gt;Hey Az38,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to get this to work. Thank you!&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Az38 = calculate(count('Conflicts &amp;amp; Entitlements'[Entitlement]), ALLSELECTED('Conflicts &amp;amp; Entitlements'[Entitlement]))&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 25 Nov 2019 15:17:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-Calculating-Count-at-Subtotal-Level/m-p/856078#M6826</guid>
      <dc:creator>redgun24</dc:creator>
      <dc:date>2019-11-25T15:17:02Z</dc:date>
    </item>
  </channel>
</rss>

