Use the following code in a macro run on exit from the first checkbox
If ActiveDocument.FormFields("Check1").CheckBox.Value = True Then
ActiveDocument.FormFields("Check2").CheckBox.Value = True
Else
ActiveDocument.FormFields("Check2").CheckBox.Value = False
End If

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
> I'm creating a form with "Summary" and "Worksheet"
> sections. Does anyone know how to create "mutually-
[quoted text clipped - 5 lines]
>
> thanks!
George - 12 Jul 2004 17:30 GMT
Doug,
Thanks for the code below - this works great!!
George
>-----Original Message-----
>Use the following code in a macro run on exit from the first checkbox
[quoted text clipped - 3 lines]
>Else
> ActiveDocument.FormFields("Check2").CheckBox.Value =
False
>End If
>
[quoted text clipped - 9 lines]
>
>.