That would not preclude you from using a query in Access. You can have the
Child1Forename field in the query as well as any number of conditional
fields that may return the Child1Forename field if the condition is met.
I cannot replicate your problem here when using and If...then...Else field
in a mailmerge main document.
If you want to send me your document, I will take a look at if for you.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
>I can't do a query in access to manipulate the data first as the fild
> "Child1Forename" is entered into the document more than once. It is needed
[quoted text clipped - 3 lines]
> As for using CTRL + F9 for the delimiters, I did that too but no luck
> either.
When you get "YesNo" data from Access, the values you see depend on how you
are connecting to your access/jet data file.
If you are using DDE (the default in Word 2000 and earlier), then "Yes"
shows up in Word as "-1" and the "No" as "0"
If you are using OLEDB (the default in Word 2002/2003) the "Yes" shows up as
"True" and "No" as False"
If you are using ODBC, the "Yes" shos up as "1" and the "No" as "0"
So you need to put the right test, depending on how you are connecting, into
your IF field, e.g.
{ IF { MERGEFIELD Child1Forename } = 0 "the 'no' result" "the 'yes'
result" }
unless you're using OLEDB in which case you need
{ IF { MERGEFIELD Child1Forename } = "False" "the 'no' result" "the 'yes'
result" }
Peter Jamieson
>I can't do a query in access to manipulate the data first as the fild
> "Child1Forename" is entered into the document more than once. It is needed
[quoted text clipped - 3 lines]
> As for using CTRL + F9 for the delimiters, I did that too but no luck
> either.
Doug Robbins - 05 Aug 2005 20:42 GMT
Another reason for doing the data manipulation in the database<g>

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> When you get "YesNo" data from Access, the values you see depend on how
> you are connecting to your access/jet data file.
[quoted text clipped - 24 lines]
>> As for using CTRL + F9 for the delimiters, I did that too but no luck
>> either.
Peter Jamieson - 05 Aug 2005 21:29 GMT
Absolutely.
Peter Jamieson
> Another reason for doing the data manipulation in the database<g>
>
[quoted text clipped - 26 lines]
>>> As for using CTRL + F9 for the delimiters, I did that too but no luck
>>> either.