Concept Flow - Finding duplicates efficiently
Start with table data
Group rows by target column(s)
Count rows in each group
Filter groups where count > 1
Return duplicate values and counts
End
This flow groups data by the column(s) to check duplicates, counts each group, then filters to keep only those with more than one entry.