Filter slice with unique rows

Hello experts,

I have a table with duplicates in column name and date. I need a slice to remove duplicate rows.

Table with duplicates:

NameDate
Paul3/10/2024
Paul3/10/2024
Paul4/10/2024
Paul4/10/2024
Mary4/10/2024

 

I need the slice to show:

Paul3/10/2024
Paul4/10/2024
Mary4/10/2024

Thanks in advance!

Solved Solved
0 3 74
1 ACCEPTED SOLUTION

Please try a slice row filter expression of 

[Key Column] =MINROW("Table Name", "_ROWNUMBER", AND([Name]=[_THISROW].[Name] , [Date]=[_THISROW].[Date]))

 

View solution in original post

3 REPLIES 3

Please try a slice row filter expression of 

[Key Column] =MINROW("Table Name", "_ROWNUMBER", AND([Name]=[_THISROW].[Name] , [Date]=[_THISROW].[Date]))

 

Thank you so much!

You are welcome.

Top Labels in this Space