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
Lachlanpap
Frequent Visitor

Deleting duplicates based on two criteria

Hello,

I have a table with duplicates in column 'A' I want deleted. I want the duplicate with the lowest value in column 'B' to be deleted. 

Any help would be greatly appreciated. Thanks

 

Lachlanpap_0-1714724125897.png

 

2 ACCEPTED SOLUTIONS
dufoq3
Super User
Super User

Hi @Lachlanpap, check this

 

Before

dufoq3_0-1714725253801.png

 

After

dufoq3_1-1714725264302.png

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjRU0lEyNDMztDQGMoyNLJRidaKVjEwgohbGxmCGuSlY2AwibG4EVKajZGRqZoYibGpgCBeOBQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [A = _t, B = _t, C = _t]),
    ChangedType = Table.TransformColumnTypes(Source,{{"A", Int64.Type}, {"B", Int64.Type}, {"C", Int64.Type}}),
    GroupedRows = Table.Group(ChangedType, {"A"}, {{"All", each if Table.RowCount(_) > 1 then Table.SelectRows(_, (x)=> x[B] <> List.Min([B])) else _, type table}}),
    CombinedAll = Table.Combine(GroupedRows[All])
in
    CombinedAll

 


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

View solution in original post

KRISHP1234
Helper I
Helper I

KRISHP1234_1-1714728421883.png

You can do by using group by, by selecting two column then group by with min value.

KRISHP1234_2-1714728495189.png

Step 1. 

KRISHP1234_3-1714728634181.png

Step 2.

KRISHP1234_4-1714728649672.png

 

 

 

View solution in original post

3 REPLIES 3
KRISHP1234
Helper I
Helper I

KRISHP1234_1-1714728421883.png

You can do by using group by, by selecting two column then group by with min value.

KRISHP1234_2-1714728495189.png

Step 1. 

KRISHP1234_3-1714728634181.png

Step 2.

KRISHP1234_4-1714728649672.png

 

 

 

Thanks for your help, both responses worked. 

dufoq3
Super User
Super User

Hi @Lachlanpap, check this

 

Before

dufoq3_0-1714725253801.png

 

After

dufoq3_1-1714725264302.png

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjRU0lEyNDMztDQGMoyNLJRidaKVjEwgohbGxmCGuSlY2AwibG4EVKajZGRqZoYibGpgCBeOBQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [A = _t, B = _t, C = _t]),
    ChangedType = Table.TransformColumnTypes(Source,{{"A", Int64.Type}, {"B", Int64.Type}, {"C", Int64.Type}}),
    GroupedRows = Table.Group(ChangedType, {"A"}, {{"All", each if Table.RowCount(_) > 1 then Table.SelectRows(_, (x)=> x[B] <> List.Min([B])) else _, type table}}),
    CombinedAll = Table.Combine(GroupedRows[All])
in
    CombinedAll

 


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

Top Solution Authors