Use an If...Then...Else field that returns the MI and the LastName if the MI
exists or just returns the LastName if it does not.
{ IF { MERGEFIELD "MI" } <> "" { MERGEFIELD "MI"} { MERGEFIELD "LastName" }
{ MERGEFIELD "LastName" } }
Use a non-breaking space between { MERGEFIELD "MI"} and { MERGEFIELD
"LastName" } so that it gets treated as the result for the "true" condition.

Signature
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.
Hope this helps,
Doug Robbins - Word MVP
> ?Sal? ?FirstName? ?MI? ?LastName? ?Suffix? I have excess spacing between
> the
> middle initial and last name when the person does not have a middle
> initial.
Graham Mayor - 06 Feb 2005 11:49 GMT
Doug
Given the space is that going to work without the speech marks?
{ IF { MERGEFIELD MI } <> "" "{ MERGEFIELD MI} { MERGEFIELD LastName }" "{
MERGEFIELD LastName }" }
might be better in the circumstances?

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Use an If...Then...Else field that returns the MI and the LastName if
> the MI exists or just returns the LastName if it does not.
[quoted text clipped - 12 lines]
>> middle initial and last name when the person does not have a middle
>> initial.
Doug Robbins - 06 Feb 2005 13:18 GMT
Thanks, Graham. I thought that the non-breaking space might do the trick,
but testing it now, I find that it doesn't.

Signature
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.
Hope this helps,
Doug Robbins - Word MVP
> Doug
>
[quoted text clipped - 21 lines]
>>> middle initial and last name when the person does not have a middle
>>> initial.