Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
CARUSO93
Helper III
Helper III

Duplicates of 'Art nr' and....!

Hi everyone,

I need your expertise on this specific matter which I am not entirely sure myself how to solve right now. 
I have a column with 'Article Numbers' (we are talking thousands of them) then I have another column 'Warehouse' which states which warehouse the article is connected to. Worth noting is that we have 2 warehouses.

 

I first want to check for whether there are duplicates in 'Article nr' and then a formula (I guess?) that checks whether the duplicates considers which Warehouse it is connected to.
More specifically, because, if there is a duplicate for an article, one of the duplicates could be written on one of the Warehouse and the other on the other warehouse, if you see what I mean.
For ex;

 

Article nr: '123456' 
Warehouse: 'A', 'B'.


If there are two Art nr of '123456' existing, it could be that one of them is written on Warehouse A and the other one on Warehouse B. Whereareas I only want it to display '123456' for one of the warehouses.

My issue now then is how I go on solving this.
I was first thinking of removing duplicates in 'Power Query' but as the 'Art nr' could be written on either 'A' OR 'B', something tells me that, that's not how to solve it.

 

Hope you can help me in this.

Many thanks!!  

1 ACCEPTED SOLUTION

Hi @CARUSO93 
Please let me know if you still have any question

1.png2.png3.png

View solution in original post

9 REPLIES 9
CARUSO93
Helper III
Helper III

@tamerj1 

To display the duplicates and which warehouse they belong to.

Hi @CARUSO93 
Apologies for the late reply. I got destracted with some other business. If I correctly understand then this is a simple requirement. Just create a matrix visual with Art No on rows and Warehouse on columns and this measure on values 

 

Duplicate = 
SUMX ( 
    VALUES ( Warehouses[Art Nr] ),
    COUNTROWS ( VALUES ( Warehouses[Warehouse] ) )
)

 

From the filter pane do the following

1.png

2.png

@tamerj1 No worries. Thanks for your reply.

Do you add the measure to the matrix? And if so, is it possible to delete the duplicates? (as I just like we did know first only want see how many duplicates there are and then delete each duplicate for either Warehouse A or B as it's only necessary for the 'Art nr' to be written on of the Warehouses.

 

Many thanks again!

HI @CARUSO93 
You can just create a new table as follows
1.png

Warehouses No Duplicates = 
SUMMARIZE ( Warehouses, Warehouses[Art Nr], "Warehouse", MAX ( Warehouses[Warehouse] ) )

@tamerj1 
Do you drag the measure to the table or? And does the measure takes the duplicates into consideration. If not how can I delete those?

Many thanks again.

Hi @CARUSO93 
Please let me know if you still have any question

1.png2.png3.png

CARUSO93
Helper III
Helper III

Hi @tamerj1,

Absolutely, here comes. I have 'bolded' the two articles that are duplicated but has different Warehouses. That's the thing with my file, there are thousands of rows.
Therefore, I want in my Power BI, to find all the duplicates and see which/how many are written on Warehouse A and how many on B.

 

Art NrWarehouse

4768

A
4452A

6325

B

9562

A

8515

B
9845B
6650B
1165B
7662A
9563A
3465B
9531A

6156

B
7513A
7346B
9512A
2563A
4561B
6325A
1637B
4768B

 

Many thanks!!

 

@CARUSO93 

Thank you. What is the expected result based on same sample data?

tamerj1
Super User
Super User

Hi @CARUSO93 

I like this type of problems. Would you please create some dummy sample data and share it along with the expected results? Thank you

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors