Dominic Godin <nospam@plz> wrote in
Don't worry worked it out :).
news:Xns94D468B07D7Dnospamplz@207.46.248.16:
> Hi,
>
[quoted text clipped - 16 lines]
>
> Dominic Godin
Use the following to change the mergefield names in the mailmerge main
documents:
Dim amf As Field, fcode As Range, i As Integer, j As Integer
For Each amf In ActiveDocument.Fields
Set fcode = amf.Code
i = InStr(fcode, Chr(34))
j = InStr(Mid(fcode, i + 1), Chr(34))
fcode.Start = fcode.Start + i
fcode.End = fcode.Start + j - 1
Select Case fcode
Case "Fname"
fcode.Text = "FirstName"
Case "Lname"
fcode.Text = "LastName"
End Select
Next amf
ActiveDocument.Fields.Update

Signature
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.
Hope this helps
Doug Robbins - Word MVP
> Hi,
>
[quoted text clipped - 16 lines]
>
> Dominic Godin