Are you using SQL or dBase? If you have it on SQL you can look first at your duplicates like this:
select count(*) as HowMany, Company, SomeSecondField from contact1
group by Company, SomeSecondField having count(*) > 1
order by Company, SomeSecondField
"You cannot hold a torch to another man's path without brightening your own"
Best regards,
Bill