How to display duplicates in a Filtered View?

Hey there! I'm trying to create a filtered view that will display any duplicate addresses in my app. I tried this expression but it did not work. Is this possible?

LINKTOFILTEREDVIEW("Admin View",
[Full Address] = [_THISROW].[Full Address])

Solved Solved
0 4 135
1 ACCEPTED SOLUTION

One way is to add a virtual column checking if there are more than one row with the same column value and then use that like LINKTOFILTEREDVIEW("YourView",[Duplicates])

View solution in original post

4 REPLIES 4

Are you trying to show dublicates for a specific row or showing that view for all rows?

I'm trying to show the duplicates for all rows.

One way is to add a virtual column checking if there are more than one row with the same column value and then use that like LINKTOFILTEREDVIEW("YourView",[Duplicates])

Ahh I see okay I'll give that a go, thanks very much!

Top Labels in this Space