Duplicate entries

R

Radiorick

I have a large spreadsheet consisting of about 16,000 rows and 8 columns.
The first columns are longitude and latitude coordinates. Is there a way to
sort and display the rows where both the values in columns A and B are the
same? I have sorted on A then B but sometimes places have exactly the same
longitude but very different latitudes. I'm just trying to eliminate the
necessity of going through all 16000 entries to eliminate duplicates.

Thanks,

Rick Morrison
[email protected]
 
M

Marcelo

Hi Radiorick

try to use an auxiliar column and concatenate A and B figures =a2&b2 and
sort for this one

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"Radiorick" escreveu:
 
M

MyVeryOwnSelf

try to use an auxiliar column and concatenate A and B figures =a2&b2
and sort for this one

For the extra picky, maybe something like
=a2&"x"&b2
would work better.

After all, "1" &"12" is the same as "11"&"2".

Never mind if there's enough punctuation in the columns to avoid the
ambiguity.
 
Top