I'm using the following to find duplicates on a sheet:
=IF(COUNTIF(Title:Title, Title@row) > 1, 1, 0)
That's working fine, but I'd like to use automation to move one of the duplicates to another sheet, leaving only 1 unique value in place. At the moment, all I can do is move both duplicate value to another sheet (everything marked with 1).
How can I solve this? Thanks