Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

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 t...
  • Thejeswar's avatar
    4 years ago

    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,