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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Power BI Dublicates

Hello guys, I have been faced with the following problem today. The problem seems to me to be quite trivial, but I was quite upset today. I have a bigger table with e.g. different names like "A,B,C,D,E,....". Each of these names has different monthly events. I just want to transform this data set within Power BI, in form of a table, so that I can show the duplicates (e.g. only one A,B,C,...) that had the last event. Everything else should be hidden. These data must not be deleted, because I use them for another visual. If someone has tips I would be very happy! !

 

An example table:

DateNotification.Codeederggrewgqregqergqergeqrgeqgqrgqrgresume date
01.10.20AA56724824824824824824824824824804.02.20
05.01.20BD345624824824824824824824824824805.02.20
04.07.20AF24724824824824824824824824824806.02.20
15.09.20CG24824925025125225325425525625707.02.20
02.05.20DJ24925025125225325425525625725808.02.20
06.06.20AS25025125225325425525625725825909.02.20
21.09.20BX25125225325425525625725825926010.02.20
19.02.20BX25225325425525625725825926026111.02.20
03.03.20DC25325425525625725825926026126212.02.20
01.09.20CU25425525625725825926026126226313.02.20

 

Regards!

ABBA

5 REPLIES 5
Anonymous
Not applicable

You can create a reference table from main table in power query and even you can delete unsue column from it .
just right click on main table and select reference and bingo .

then delete unuse column.

 

Thank you 

rks
Resolver II
Resolver II

Hi Abba, have you already tried some solutions?

 

What is the desired output? A measure or a table?

Anonymous
Not applicable

Hi @rks ,

 

yes i tried a table visual and group by latest on the dates, but it doesnt work. 

 

Regards,

Abba

Ok, I would probably do something like this (not testet)

MINX(

 SUMMARIZE('Table', 'Table'[NotificationCode], 'Table'[Date]), -- or what every granularity you need

  CALCULATE(min(resumdate))

)

 

If necessary remove the filters from the table with ALL()

Anonymous
Not applicable

Hey @rks ,

 

thank you!! I dont get the right dates 😕

 

Bildschirmfoto 2020-10-19 um 22.58.29.png

 

This is what I get with this measure.

 

Any ideas why?

Helpful resources

Announcements
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.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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

Top Solution Authors