Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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.
A customer order (Order ID) is considered 'duplicate' if there is another Order ID with the:
- same Order Date +
- same Customer Reference +
- same List of Materials +
- same Order quantities for each material.
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.
Any help appreciated.
Hi @BLB
Please try
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 ) ) > 1
)
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
14 | |
11 | |
8 | |
8 | |
8 |
User | Count |
---|---|
22 | |
13 | |
11 | |
10 | |
10 |