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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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

@AbbasG , refer if this topic can help

https://exceleratorbi.com.au/remove-duplicates-keep-last-record-power-query/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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