<?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 Identifying and listing duplicates across multiple columns in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identifying-and-listing-duplicates-across-multiple-columns/m-p/3470894#M132523</link>
    <description>&lt;P&gt;I am looking for a solution either in Power Query or in DAX to be able to identify customer orders which are placed by error more than once.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A customer order (Order ID) is considered 'duplicate' if there is another Order ID with the:&lt;/P&gt;&lt;P&gt;- same Order Date +&lt;/P&gt;&lt;P&gt;- same Customer Reference +&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;- same List of Materials&lt;/STRONG&gt;&lt;/U&gt;&amp;nbsp;+&lt;/P&gt;&lt;P&gt;- same Order quantities for each material.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is important that one order usually consist of multiple Material codes and we want to find 'duplicate' orders only if the whole list of material and order quantities are the same.&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;Any help appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Oct 2023 10:25:44 GMT</pubDate>
    <dc:creator>BLB</dc:creator>
    <dc:date>2023-10-11T10:25:44Z</dc:date>
    <item>
      <title>Identifying and listing duplicates across multiple columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identifying-and-listing-duplicates-across-multiple-columns/m-p/3470894#M132523</link>
      <description>&lt;P&gt;I am looking for a solution either in Power Query or in DAX to be able to identify customer orders which are placed by error more than once.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A customer order (Order ID) is considered 'duplicate' if there is another Order ID with the:&lt;/P&gt;&lt;P&gt;- same Order Date +&lt;/P&gt;&lt;P&gt;- same Customer Reference +&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;- same List of Materials&lt;/STRONG&gt;&lt;/U&gt;&amp;nbsp;+&lt;/P&gt;&lt;P&gt;- same Order quantities for each material.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is important that one order usually consist of multiple Material codes and we want to find 'duplicate' orders only if the whole list of material and order quantities are the same.&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;Any help appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Oct 2023 10:25:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identifying-and-listing-duplicates-across-multiple-columns/m-p/3470894#M132523</guid>
      <dc:creator>BLB</dc:creator>
      <dc:date>2023-10-11T10:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying and listing duplicates across multiple columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identifying-and-listing-duplicates-across-multiple-columns/m-p/3470963#M132528</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="386482" data-lia-user-login="BLB" class="lia-mention lia-mention-user"&gt;BLB&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Duplicate Orders =
CALCULATETABLE (
    VALUES ( Orders[Order ID] ),
    FILTER (
        SUMMARIZE (
            Orders,
            Orders[Order Date],
            Orders[Customer Reference],
            Orders[List of Materials],
            Orders[Order Qty]
        ),
        COUNTROWS ( CALCULATETABLE ( Orders ) ) &amp;gt; 1
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 11 Oct 2023 10:51:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identifying-and-listing-duplicates-across-multiple-columns/m-p/3470963#M132528</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-10-11T10:51:49Z</dc:date>
    </item>
  </channel>
</rss>

