I don't know of a way to fix this using fields, except by using a DATABASE
field to do the comparison, which can be complicated.
Other possible approaches are:
a. if your data source allows it, do the comparison using a query and
return an additional field that says whether the comparison succeeded or not
(or return an additional field containing the text you need, if that is
appropriate). This can be done in a number of ways depending on the data
source and your level of access to it. For example, in an Access query you
can use WHERE fieldname LIKE "*Smith*" (old syntax) WHERE fieldname LIKE
"%Smith%"(ANSI-92 syntax) to do this. If the data source can be accessed
using ODBC you will probably be able to use MS Query to set up something
similar, or you could use VBA to set up the query
b. if you are using Word 2002/2003, use VBA and the Word MailMerge events
to run VBA that does the comparison as each record is processed, and takes
appropriate action.
More info. available on these approaches depending on whether you think you
want to try any of them and which one seems likely to meet your needs.

Signature
Peter Jamieson
> I've figured out how to use the COMPARE functionality in a Word merge:
>
[quoted text clipped - 18 lines]
>
> JASon