#1   Report Post  
Posted to microsoft.public.word.docmanagement
Sharon Sharon is offline
external usenet poster
 
Posts: 111
Default check boxes

I have a form in Word 07 with multiple check boxes.

I would like to check one box, and automatically have another check box get
a check, instead of manually checking the 2nd one, which leaves room for
human error. There are 2 instances of this on my form. Hope this make
sense.
--
Thanks,
Sharon
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default check boxes

For that you would need a macro run on exit from the first check box field
(here Check1) to set the value of the second (here Check2) as follows

If ActiveDocument.FormFields("Check1").CheckBox.Value = True Then
ActiveDocument.FormFields("Check2").CheckBox.Value = True
Else
ActiveDocument.FormFields("Check2").CheckBox.Value = False
End If


--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"SHARON" wrote in message
...
I have a form in Word 07 with multiple check boxes.

I would like to check one box, and automatically have another check box
get
a check, instead of manually checking the 2nd one, which leaves room for
human error. There are 2 instances of this on my form. Hope this make
sense.
--
Thanks,
Sharon



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default check boxes


For that you would need a macro run on exit from the first check box field
(here Check1) to set the value of the second (here Check2) as follows

If ActiveDocument.FormFields("Check1").CheckBox.Value = True Then
ActiveDocument.FormFields("Check2").CheckBox.Value = True
Else
ActiveDocument.FormFields("Check2").CheckBox.Value = False
End If


--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"SHARON" wrote in message
...
I have a form in Word 07 with multiple check boxes.

I would like to check one box, and automatically have another check box
get
a check, instead of manually checking the 2nd one, which leaves room for
human error. There are 2 instances of this on my form. Hope this make
sense.
--
Thanks,
Sharon



  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default check boxes

You'll need to use a macro. See
http://groups.google.com/group/micro...author :mayor

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

SHARON wrote:
I have a form in Word 07 with multiple check boxes.

I would like to check one box, and automatically have another check
box get a check, instead of manually checking the 2nd one, which
leaves room for human error. There are 2 instances of this on my
form. Hope this make sense.



  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default check boxes

You'll need to use a macro. See
http://groups.google.com/group/micro...author :mayor

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

SHARON wrote:
I have a form in Word 07 with multiple check boxes.

I would like to check one box, and automatically have another check
box get a check, instead of manually checking the 2nd one, which
leaves room for human error. There are 2 instances of this on my
form. Hope this make sense.





  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default check boxes

Hah! I'd forgotten that one - which is probably even simpler

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"Jay Freedman" wrote in message
...
You'll need to use a macro. See
http://groups.google.com/group/micro...author :mayor

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup
so all may benefit.

SHARON wrote:
I have a form in Word 07 with multiple check boxes.

I would like to check one box, and automatically have another check
box get a check, instead of manually checking the 2nd one, which
leaves room for human error. There are 2 instances of this on my
form. Hope this make sense.





  #7   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default check boxes

Hah! I'd forgotten that one - which is probably even simpler

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"Jay Freedman" wrote in message
...
You'll need to use a macro. See
http://groups.google.com/group/micro...author :mayor

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup
so all may benefit.

SHARON wrote:
I have a form in Word 07 with multiple check boxes.

I would like to check one box, and automatically have another check
box get a check, instead of manually checking the 2nd one, which
leaves room for human error. There are 2 instances of this on my
form. Hope this make sense.





  #8   Report Post  
Posted to microsoft.public.word.docmanagement
Sharon Sharon is offline
external usenet poster
 
Posts: 111
Default check boxes

Graham/Jay...

Thank you both for your feedback, unfortuantely i don't know much about
macros....is there any chance you could reply back with the way i would
create this macro, right from step 1?
--
Thanks,
Sharon


"Graham Mayor" wrote:

Hah! I'd forgotten that one - which is probably even simpler

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"Jay Freedman" wrote in message
...
You'll need to use a macro. See
http://groups.google.com/group/micro...author :mayor

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup
so all may benefit.

SHARON wrote:
I have a form in Word 07 with multiple check boxes.

I would like to check one box, and automatically have another check
box get a check, instead of manually checking the 2nd one, which
leaves room for human error. There are 2 instances of this on my
form. Hope this make sense.





.

  #9   Report Post  
Posted to microsoft.public.word.docmanagement
Sharon Sharon is offline
external usenet poster
 
Posts: 111
Default check boxes


Graham/Jay...

Thank you both for your feedback, unfortuantely i don't know much about
macros....is there any chance you could reply back with the way i would
create this macro, right from step 1?
--
Thanks,
Sharon


"Graham Mayor" wrote:

Hah! I'd forgotten that one - which is probably even simpler

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"Jay Freedman" wrote in message
...
You'll need to use a macro. See
http://groups.google.com/group/micro...author :mayor

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup
so all may benefit.

SHARON wrote:
I have a form in Word 07 with multiple check boxes.

I would like to check one box, and automatically have another check
box get a check, instead of manually checking the 2nd one, which
leaves room for human error. There are 2 instances of this on my
form. Hope this make sense.





.

  #10   Report Post  
Posted to microsoft.public.word.docmanagement
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default check boxes

See the following page of fellow MVP Graham Mayor's website:

http://www.gmayor.com/installing_macro.htm

--
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, originally posted via msnews.microsoft.com

"SHARON" wrote in message
news
Graham/Jay...

Thank you both for your feedback, unfortuantely i don't know much about
macros....is there any chance you could reply back with the way i would
create this macro, right from step 1?
--
Thanks,
Sharon


"Graham Mayor" wrote:

Hah! I'd forgotten that one - which is probably even simpler

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"Jay Freedman" wrote in message
...
You'll need to use a macro. See
http://groups.google.com/group/micro...author :mayor

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup
so all may benefit.

SHARON wrote:
I have a form in Word 07 with multiple check boxes.

I would like to check one box, and automatically have another check
box get a check, instead of manually checking the 2nd one, which
leaves room for human error. There are 2 instances of this on my
form. Hope this make sense.




.



  #11   Report Post  
Posted to microsoft.public.word.docmanagement
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default check boxes

See the following page of fellow MVP Graham Mayor's website:

http://www.gmayor.com/installing_macro.htm

--
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, originally posted via msnews.microsoft.com

"SHARON" wrote in message
news
Graham/Jay...

Thank you both for your feedback, unfortuantely i don't know much about
macros....is there any chance you could reply back with the way i would
create this macro, right from step 1?
--
Thanks,
Sharon


"Graham Mayor" wrote:

Hah! I'd forgotten that one - which is probably even simpler

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"Jay Freedman" wrote in message
...
You'll need to use a macro. See
http://groups.google.com/group/micro...author :mayor

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup
so all may benefit.

SHARON wrote:
I have a form in Word 07 with multiple check boxes.

I would like to check one box, and automatically have another check
box get a check, instead of manually checking the 2nd one, which
leaves room for human error. There are 2 instances of this on my
form. Hope this make sense.




.

Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Why can't I check the check boxes in a Word document? Skylark Microsoft Word Help 5 April 6th 23 07:23 PM
check boxes JOLOJO58 Page Layout 2 February 15th 10 05:23 PM
how can I print form check boxes and form text boxes in color? kflynn Microsoft Word Help 0 November 18th 08 04:17 PM
Aligning check boxes and text boxes with regular text ssbell Microsoft Word Help 1 March 28th 07 02:12 AM
Aligning check boxes and text boxes with regular text Simon Jones [MSDL] Microsoft Word Help 0 March 28th 07 12:17 AM


All times are GMT +1. The time now is 04:34 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"