Forum Discussion
Remove Duplicates - Report View
Hello
I need to filter or remove duplicates in a specific column but I only have access to report view - I do not have access to Query editor. I am accessing data via sql analysis server. Is there a way to do this?
Thanks!
Hi Anonymous ,
One way to achieve this is to Group the Category column and use MAX() or MIN() functions to the Value columns
Something like below
unique_row_table = SUMMARIZE(duplicate_records_table, Dim1, Dim2,.., "Value1", MAX(Value1),"Value2", MAX(Value2), ...)
There could be other ways available as well to get this done
Regards,
1 Reply
- ThejeswarSuper User
Hi Anonymous ,
One way to achieve this is to Group the Category column and use MAX() or MIN() functions to the Value columns
Something like below
unique_row_table = SUMMARIZE(duplicate_records_table, Dim1, Dim2,.., "Value1", MAX(Value1),"Value2", MAX(Value2), ...)
There could be other ways available as well to get this done
Regards,