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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AbbasG
Memorable Member
Memorable Member

Removing duplicates from the data

Hello People,

 

I have the data on the Power BI desktop. Where there are duplicate rows as below.

 

I need to remove the duplicates but want to keep the one with the minimum price.

 

I tried to remove the duplicates in the query editor, but it removes the one with minimum price.

ParticularDatePriceMerged
ABC10/8/2021$40.00ABC - $40.00
ABC10/11/2021$39.00ABC - $39.00

 

Any help will be appreciated!

1 ACCEPTED SOLUTION
v-chenwuz-msft
Community Support
Community Support

Hi @AbbasG 

 

You can try this method.

First , sort Particular , then sort price by ascending. This is make sure the min price to be the first under the same Particular

And then use the remove duplicate row to remove. Because this remove duplicates rows will all ways keep the first one.

 

Or you can try dax to reach that. Try column like the following :

Column =
VAR _MIN =
    MINX(
        FILTER( 'Table', [Particular] = EARLIER( Table_DAX[Particular] ) ),
        [Price]
    )
RETURN
    IF( _MIN = [Price], 1, BLANK() )

 

And select the 1

vchenwuzmsft_0-1634198043401.png

 

 

I put the pbix file in the end you can reference.

 

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-chenwuz-msft
Community Support
Community Support

Hi @AbbasG 

 

You can try this method.

First , sort Particular , then sort price by ascending. This is make sure the min price to be the first under the same Particular

And then use the remove duplicate row to remove. Because this remove duplicates rows will all ways keep the first one.

 

Or you can try dax to reach that. Try column like the following :

Column =
VAR _MIN =
    MINX(
        FILTER( 'Table', [Particular] = EARLIER( Table_DAX[Particular] ) ),
        [Price]
    )
RETURN
    IF( _MIN = [Price], 1, BLANK() )

 

And select the 1

vchenwuzmsft_0-1634198043401.png

 

 

I put the pbix file in the end you can reference.

 

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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