word check box form fields linked

C

cvw

I have sucessfully linked text form fields in word. Now, I want a second
checkbox field to be filled in when I click of another checkbox.

ie. clicking checkbox: employment_status_c should cause checkbox:
pop_category_m to be checked.
 
G

Graham Mayor

You need a macro run on exit from the first check box field

With ActiveDocument
If .FormFields("employment_status_c").CheckBox.Value = True Then
.FormFields("pop_category_m").CheckBox.Value = True
Else
.FormFields("pop_category_m").CheckBox.Value = False
End If
End With


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top