<?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 Count all values in table that share same value as current row in pivot table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1055925#M14554</link>
    <description>&lt;DIV class="lia-message-subject lia-component-message-view-widget-subject"&gt;&lt;DIV class="MessageSubject"&gt;&lt;DIV class="MessageSubjectIcons "&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="lia-menu-navigation-wrapper lia-menu-action lia-component-message-view-widget-action-menu"&gt;&lt;DIV class="lia-menu-navigation"&gt;&lt;DIV class="dropdown-default-item"&gt;&lt;DIV class="dropdown-positioning"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="lia-message-post-date lia-component-post-date lia-component-message-view-widget-post-date"&gt;&lt;SPAN&gt;I am trying to count all values in a table that have the same value as the current row.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a duplication key and I want to see how many time this key shows up in the rest of the table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Duplication key:&lt;/P&gt;&lt;P&gt;=CONCATENATE(CONCATENATE([Total Weight kg],"-"),[Total Net Value])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Key Count:&lt;/P&gt;&lt;P&gt;=COUNTAX(ALL('Invoice Data'),CONCATENATE(CONCATENATE([Total Weight kg],"-"),[Total Net Value])=[Duplication Check Key])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But at the moment I am getting this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;410.556-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3702.224-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;869.4-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;408.29-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1356.356-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;361.496-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1773.014-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1240.89-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I do the same thing without the ALL function:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=COUNTAX('Invoice Data',CONCATENATE(CONCATENATE([Total Weight kg],"-"),[Total Net Value])=[Duplication Check Key])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only count items in the current row and I count all of them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The difficulty is that you cannot simply use "@"[column] like you can in an excel table. Please someone help&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 29 Apr 2020 09:23:52 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-04-29T09:23:52Z</dc:date>
    <item>
      <title>Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1055925#M14554</link>
      <description>&lt;DIV class="lia-message-subject lia-component-message-view-widget-subject"&gt;&lt;DIV class="MessageSubject"&gt;&lt;DIV class="MessageSubjectIcons "&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="lia-menu-navigation-wrapper lia-menu-action lia-component-message-view-widget-action-menu"&gt;&lt;DIV class="lia-menu-navigation"&gt;&lt;DIV class="dropdown-default-item"&gt;&lt;DIV class="dropdown-positioning"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="lia-message-post-date lia-component-post-date lia-component-message-view-widget-post-date"&gt;&lt;SPAN&gt;I am trying to count all values in a table that have the same value as the current row.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a duplication key and I want to see how many time this key shows up in the rest of the table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Duplication key:&lt;/P&gt;&lt;P&gt;=CONCATENATE(CONCATENATE([Total Weight kg],"-"),[Total Net Value])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Key Count:&lt;/P&gt;&lt;P&gt;=COUNTAX(ALL('Invoice Data'),CONCATENATE(CONCATENATE([Total Weight kg],"-"),[Total Net Value])=[Duplication Check Key])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But at the moment I am getting this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;410.556-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3702.224-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;869.4-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;408.29-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1356.356-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;361.496-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1773.014-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1240.89-0&lt;/TD&gt;&lt;TD&gt;11912&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I do the same thing without the ALL function:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=COUNTAX('Invoice Data',CONCATENATE(CONCATENATE([Total Weight kg],"-"),[Total Net Value])=[Duplication Check Key])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only count items in the current row and I count all of them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The difficulty is that you cannot simply use "@"[column] like you can in an excel table. Please someone help&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 29 Apr 2020 09:23:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1055925#M14554</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-29T09:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1056330#M14566</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you check DISTINCTCOUNT() of&amp;nbsp;&lt;SPAN&gt;Duplication key?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 11:43:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1056330#M14566</guid>
      <dc:creator>nandukrishnavs</dc:creator>
      <dc:date>2020-04-29T11:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1056398#M14568</link>
      <description>&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;=COUNTROWS(CALCULATETABLE(ALL('Invoice Data'),VALUES([Total Weight kg]), VALUES([Total Net Value])))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 12:14:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1056398#M14568</guid>
      <dc:creator>sjoerdvn</dc:creator>
      <dc:date>2020-04-29T12:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1056524#M14578</link>
      <description>Again.... Why are you not doing this in Power Query, where such calculations belong?&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Wed, 29 Apr 2020 13:06:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1056524#M14578</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-29T13:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1056553#M14581</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="226664" data-lia-user-login="sjoerdvn" class="lia-mention lia-mention-user"&gt;sjoerdvn&lt;/a&gt;&amp;nbsp;Unfortunately this does not work. It seems to be iterating weight and net value so it counts everything&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;I am trying both in Power Pivot and in the data model in Power Query&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 13:41:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1056553#M14581</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-29T13:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1056656#M14587</link>
      <description>&lt;P&gt;&lt;SPAN&gt;So, is [Duplication Check Key] a measure or a computed column ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What are the required output columns of your report ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Anyway, I've done a little test. Assuming the [Key] column is in the required output, you could use:&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;= COUNTROWS(CALCULATETABLE('Invoice Data',ALL('Invoice Data'),VALUES('Invoice Data'[Total Net Value]),VALUES('Invoice Data'[Total Weight kg])))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 29 Apr 2020 14:35:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1056656#M14587</guid>
      <dc:creator>sjoerdvn</dc:creator>
      <dc:date>2020-04-29T14:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1057659#M14624</link>
      <description>&lt;P&gt;If Duplication Key is an existing calculated column, why not just make a table visual with Duplication Key and the following measure?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;RowCount = countrows('Invoice Data')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the count of rows with same Duplication Key is needed in a calculated column, you could use the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;RowCount = var currentDupKey = [Duplication Key]&lt;/P&gt;&lt;P&gt;return calculate(countrows('Invoice Data'), all('Invoice Data'), 'Invoice Data'[Duplication Key] = currentDupKey)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 00:51:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1057659#M14624</guid>
      <dc:creator>mahoneypat</dc:creator>
      <dc:date>2020-04-30T00:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1058802#M14645</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="226664" data-lia-user-login="sjoerdvn" class="lia-mention lia-mention-user"&gt;sjoerdvn&lt;/a&gt;&amp;nbsp;this still does not work, it reads all of the rows as before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="226208" data-lia-user-login="mahoneypat" class="lia-mention lia-mention-user"&gt;mahoneypat&lt;/a&gt;&amp;nbsp; how does the currentDupKey part work? That is what I am trying to achieve.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 09:27:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1058802#M14645</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-30T09:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1058834#M14646</link>
      <description>&lt;P&gt;I could do this using M code in the query editor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know how I could do this?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 09:31:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1058834#M14646</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-30T09:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1059058#M14647</link>
      <description>&lt;P&gt;&amp;nbsp;have found a solution to this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Step 1)&lt;/P&gt;&lt;P&gt;Go into main table query, remove any errors from the net value column (optional)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create key from relevant columns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Close and load (to data model)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Step 2)&lt;/P&gt;&lt;P&gt;Duplicate this query&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use group by to get a row count using the key as the group category.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Close and load (to data model)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Build a relationship with the original table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Step 3) Use related to get the count column in order to use a 'downstream' variable in any Power Pivot Table (optional)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your support peeps!&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 11:34:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1059058#M14647</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-30T11:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1059095#M14649</link>
      <description>&lt;P&gt;Glad you figured it out.&amp;nbsp; You could also do a merge in query editor and bring your count into the first table there, and then diable load on that query so you don't have that extra table in your model.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pat&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 11:57:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1059095#M14649</guid>
      <dc:creator>mahoneypat</dc:creator>
      <dc:date>2020-04-30T11:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1059212#M14655</link>
      <description>&lt;P&gt;Great thanks for the tip!&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 13:05:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1059212#M14655</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-30T13:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Count all values in table that share same value as current row in pivot table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1059220#M14657</link>
      <description>&lt;P&gt;Thats great advice, thanks Pat&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 13:06:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-all-values-in-table-that-share-same-value-as-current-row/m-p/1059220#M14657</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-30T13:06:39Z</dc:date>
    </item>
  </channel>
</rss>

