Is there an easy way to remove an entire row if there is a duplicate in the first column?
For example, Remove name A (address 123) but keep Name A w/ address 143?
Name Address
A 123
A 143
B 456
C 789
D 101
So the new list would be:
Name Address
A 143
B 456
C 789
D 101
I only have two columns and thousands of rows so if theres a way to easily remove that would be great
For example, Remove name A (address 123) but keep Name A w/ address 143?
Name Address
A 123
A 143
B 456
C 789
D 101
So the new list would be:
Name Address
A 143
B 456
C 789
D 101
I only have two columns and thousands of rows so if theres a way to easily remove that would be great