Check Boxes not working w/ cross reference

T

Tracy

I sent in a question this morning asking for help using
text form fields and was helped with the suggestion of
using cross references. This helped with the text form
and drop down form fields, but does not work with the
check box form fields. Any suggestions?

Here is what I am trying to accomplish:
Can I have a form that gets filled out by my
supervisors.
Some of the fields on the forms are drop down form
fields,some are check box form fields and some are text
boxes.

Several of the fields that they fill out on the first
page are used to fill out a second page and rather than
having them duplicate the entry, I was just going to have
the information link to the next page. How can I do that?

Thank you
 
D

Doug Robbins

You will need to run a macro on exit from the checkboxes on the first page
such as

If ActiveDocument.Formfields("page1checkbox).CheckBox.Value = True Then
ActiveDocument.Formfields("page2checkbox).CheckBox.Value = True
Else
ActiveDocument.Formfields("page2checkbox).CheckBox.Value = False
End If
--
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
 

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