Forum Discussion
Remove duplicates based on values
- 10 years ago
I've had this problem before. I'm using datesThe way I found around it was 4 steps:
Step #1. Use group by to find the max value. Add all rows to the bottom.
Step #2. Expand all the rows. Basically this adds a new column with the max values down the side of the table
Step #3. Add a custom column like this: if date_applied = Max Date then true else false
Step #4. Filter down to just true.
Hope this helps.
very interesting way, thank you Beckham
Helped me a lot.
My problem seemed very specific but hopefully some other people like you managed to solve it.
that's great.
thanks
Hi all,
I know a better way (the easiest one, for sure !) which is explained here in a video made by a clever Power BI specialist known as Curbal :
https://www.youtube.com/watch?v=rqDdnNxSgHQ&index=22&list=PLDz00l_jz6zzttb28XH8GHZNL6vvpBlkQ
- ruthpozuelo9 years agoKudo KingpinMany thanks for the mention! /Ruth
- Anonymous7 years agoNot applicable
Thanks augustindelaf the YouTube link you posted helped me emensely
- augustindelaf7 years agoImpactful Individual
You are Welcome Anonymous !
- Beckham9 years agoAdvocate II
That's GREAT!!! Thanks for the tip!