If you are sure the problem is in the company names you could use the following where clause to screen out all names which include anything besides standard English letter, numerals and spaces: where company_name = compress (company_name, ' AD', 'K') ; (this instructs the compress function to discard every character unless it is a space, English letter, or digit, in this instance the 'K' modifier says 'keep those') You may have to add in the registered trade mark symbol (small R in a circle) if your companies use it. Richard
... View more