<?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: Show duplicate rows in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2512699#M69740</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="332483" data-lia-user-login="mahsy" class="lia-mention lia-mention-user"&gt;mahsy&lt;/a&gt;&amp;nbsp;，&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try this measure.&amp;nbsp;And set the filters as shown in the figure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = COUNTROWS('Table') - COUNTROWS(SUMMARIZE('Table','Table'[Course],'Table'[PR],'Table'[Date]))&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Attached PBIX file for reference.&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;Best Regards,&lt;BR /&gt;Gao&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Community Support Team&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;If there is any post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT size="3" color="#FF0000"&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT size="3"&gt;&lt;FONT color="#FF0000"&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;Thanks a lot!&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#FF0000"&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;How to get your questions answered quickly&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;--&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;How to provide sample data&lt;/SPAN&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 13 May 2022 08:15:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-05-13T08:15:18Z</dc:date>
    <item>
      <title>Show duplicate rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2503959#M69289</link>
      <description>&lt;P&gt;Hi !!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to display in the graphic the number of duplicate rows according to date. But i don't know how to count &lt;SPAN class=""&gt;uniquely&amp;nbsp;&lt;/SPAN&gt;multiple columns.&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;&lt;P&gt;Thank you for your help !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 08:06:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2503959#M69289</guid>
      <dc:creator>mahsy</dc:creator>
      <dc:date>2022-05-10T08:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Show duplicate rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2504684#M69319</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="332483" data-lia-user-login="mahsy" class="lia-mention lia-mention-user"&gt;mahsy&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;create a calculated column like the below and put that column in the X-axis (values) or Y-axis (values), then set the aggregation as count.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Earlier = COUNTX(filter(Table_count,EARLIER(Table_count[Course])=Table_count[Course] &amp;amp;&amp;amp; EARLIER(Table_count[PR])=Table_count[PR] &amp;amp;&amp;amp;EARLIER(Table_count[Date])=Table_count[Date]),Table_count[Course])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arul&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 11:44:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2504684#M69319</guid>
      <dc:creator>Arul</dc:creator>
      <dc:date>2022-05-10T11:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Show duplicate rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2504776#M69324</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Unfortunately i'm in live&amp;nbsp; connection, so i can't create calculated column.&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 12:28:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2504776#M69324</guid>
      <dc:creator>mahsy</dc:creator>
      <dc:date>2022-05-10T12:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Show duplicate rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2504830#M69327</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="332483" data-lia-user-login="mahsy" class="lia-mention lia-mention-user"&gt;mahsy&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;try this in measure,&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;cal = CALCULATE(COUNT(Table_count[Course]),FILTER(ALL(Table_count),
COUNTX(filter(Table_count,
EARLIER(Table_count[Course])=Table_count[Course] &amp;amp;&amp;amp; 
EARLIER(Table_count[PR])=Table_count[PR] &amp;amp;&amp;amp;
EARLIER(Table_count[Date])=Table_count[Date]),
Table_count[Course])))&lt;/LI-CODE&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arul&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 12:43:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2504830#M69327</guid>
      <dc:creator>Arul</dc:creator>
      <dc:date>2022-05-10T12:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Show duplicate rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2504914#M69334</link>
      <description>&lt;P&gt;Here is what i get. It counts all rows.&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just want to count duplicate rows. Here is the expected result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;thank you for your help !&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 13:02:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2504914#M69334</guid>
      <dc:creator>mahsy</dc:creator>
      <dc:date>2022-05-10T13:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Show duplicate rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2512699#M69740</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="332483" data-lia-user-login="mahsy" class="lia-mention lia-mention-user"&gt;mahsy&lt;/a&gt;&amp;nbsp;，&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try this measure.&amp;nbsp;And set the filters as shown in the figure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = COUNTROWS('Table') - COUNTROWS(SUMMARIZE('Table','Table'[Course],'Table'[PR],'Table'[Date]))&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Attached PBIX file for reference.&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;Best Regards,&lt;BR /&gt;Gao&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Community Support Team&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;If there is any post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT size="3" color="#FF0000"&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT size="3"&gt;&lt;FONT color="#FF0000"&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;Thanks a lot!&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#FF0000"&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;How to get your questions answered quickly&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;--&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;How to provide sample data&lt;/SPAN&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 08:15:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-duplicate-rows/m-p/2512699#M69740</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-13T08:15:18Z</dc:date>
    </item>
  </channel>
</rss>

