Say I have a table in which each record has a Single Line Text "Notes" field with content like this:
- Monday
- Good Friday
- Tuesday
- Taco Tuesday
- Good Friday
- Tuesday
I want to find all records where the Notes have exact matches, in this case for Good Friday and Tuesday, and display them together.
I figured I'd have to add a field to check for uniqueness somehow and then filter for non-unique records, but I'm not sure how to do this.