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

Don'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.

Reply
MdJ83
Helper II
Helper II

Creating a summarized table to remove duplicates

Im looking to create a new table and to remove duplicate entries where it is zero but where there is not duplicate to still leave the empty field in the table based on email address. 

 

As desribed in the table below

 

Current data  
Address NumberAlpha NameElectornic Address
1ABCABC@GMAIL.COM
1ABC 
2cdeCDE@GMAIL.COM
3fgh 
3fghFGH@GMAIL.COM
4hij 
   
New Data  
Address NumberAlpha NameElectornic Address
1ABCABC@GMAIL.COM
2cdeCDE@GMAIL.COM
3fghFGH@GMAIL.COM
4hij 
1 ACCEPTED SOLUTION
ValtteriN
Super User
Super User

Hi @MdJ83 ,

You can try using SUMMARIZE:

SUMMARIZE('Table (7)','Table (7)'[Address Number],'Table (7)'[Alpha Name],"Email",MAX('Table (7)'[Electornic Address]))

ValtteriN_0-1652944600647.png

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/







Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
CNENFRNL
Community Champion
Community Champion

Resort to PQ for such data extraction/data shaping tasks; so that you can easily handle such a case,

 

Address Number Alpha Name Electornic Address
1 ABC ABC@GMAIL.COM
1 ABC  
1 ABC another@hotmail.com
2 cde CDE@GMAIL.COM
3 fgh  
3 fgh FGH@GMAIL.COM
4 hij  

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUXJ0coaQDu6+jp4+es7+vkqxOshyaNzEvPySjNQih4z8ktzEzBy95PxcsAojoFxySiqQdHZxRTPMGCialp4BMwzBdXP3QFNqAhTNyMwCK40FAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Address Number" = _t, #"Alpha Name" = _t, #"Electornic Address" = _t]),

    #"Filtered Email" = Table.Group(Source, List.FirstN(Table.ColumnNames(Source),2), {"Grp", each Table.SelectRows(_, (r) => Text.Length(r[Electornic Address]) > 0)}),
    #"Expanded Aggr" = Table.ExpandTableColumn(#"Filtered Email", "Grp", {"Electornic Address"})
in
    #"Expanded Aggr"

 

CNENFRNL_0-1652948862737.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

ValtteriN
Super User
Super User

Hi @MdJ83 ,

You can try using SUMMARIZE:

SUMMARIZE('Table (7)','Table (7)'[Address Number],'Table (7)'[Alpha Name],"Email",MAX('Table (7)'[Electornic Address]))

ValtteriN_0-1652944600647.png

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/







Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.