Forum Discussion
remove selective duplicate in columns
Hi Anonymous
Try using Group By instead, select both columns and hit Group By, if you want to keep all other fields you can add them as aggregation like MAX or MIN
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
- Anonymous6 years agoNot applicable
why is it using max or min? not kinda sure on how do you do it when u group by the other two columns.
- Mariusz6 years agoCommunity Champion
Hi Anonymous
If you want to get unique values from "BR" and "Chassis" you will have to do something about the rest of the columns.
- Remove them
- Aggregate them ( count, sum, min or max )
- Include in the group.
when you use remove duplicates it will use do a similar thing ( take the unique values of selected columns and take first value of every other column not included in the selection )
What would be the desired outcome that you are expecting?
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.- Anonymous6 years agoNot applicable
Hi the outcome is actually that. it's just the when i remove both br and chassis it doesnt match my excel total number of rows.
in excel when i remove both its "8737" but in power bi is 8725 im guessing its because it only remove the chassis duplicates :(
it is possible to give me a step on how you do your solution? thanks