Hi, I need to remove duplicates in a given column, but leave the rest of the row intact., so if i have:
ColumnA ColumnB ColumnC
Sue Apple x
Sue Apple x
Sue Pear x
John Apple x
John Apple x
would get:
ColumnA ColumnB ColumnC
Sue Apple x
x
Pear x
John Apple x
x
hope that makes sense, thanks!