To find duplicates based on ‘product name’ you can do a search, and then group by product name (with an aggregation of count).
To display only the product names with more than one entry, you can filter the groupings by count where the count is more than 0.
To display the actual products you can use each grouping’s Product.
You can merge that with a regular search for products if you want to display all Products.
You can use a condition such as (this product is in the groups search’s each item’s product) to visually identify duplicate products.
1 Like