Ideally, I want to be able to search through an entire sheet (or range of cells) and remove any values that have been repeated in that sheet (for example, if "2" appears in A3
, B8
, and D4
, then I want to keep it in A3
and delete it in B8
and D4
).
I normally see this problem addressed by looking at one column or row for duplicates (using the UNIQUE
function) but not for an entire sheet.
How can I do this?