Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
RBLampert RBLampert is offline
external usenet poster
 
Posts: 10
Default Interdependent drop-down boxes in Word forms (part 1)

I'm creating a form for a national organization that is divided into regions,
states, and chapters. There are a lot of chapters and state organizations,
far over the 25 entry limit for drop-down boxes, and I don't want to create a
drop-down box with over 200 entries if I turn off the limit. Is there a way
to link a set of drop-down boxes so that if the user selects a particular
region, in the State box, they'll only see the states that are part of that
region, and then, a second time, see only the chapters assigned to a
particular state when the state is selected?
  #2   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 Interdependent drop-down boxes in Word forms (part 1)

See the final section of

http://gregmaxey.mvps.org/Populate_UserForm_ListBox.htm

You are going to have to get started with VBA real quick
--
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

"RBLampert" wrote in message
...
I'm creating a form for a national organization that is divided into
regions,
states, and chapters. There are a lot of chapters and state
organizations,
far over the 25 entry limit for drop-down boxes, and I don't want to
create a
drop-down box with over 200 entries if I turn off the limit. Is there a
way
to link a set of drop-down boxes so that if the user selects a particular
region, in the State box, they'll only see the states that are part of
that
region, and then, a second time, see only the chapters assigned to a
particular state when the state is selected?



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
RBLampert RBLampert is offline
external usenet poster
 
Posts: 10
Default Interdependent drop-down boxes in Word forms (part 1)

Thanks, Doug. This looks like it'll do what I want but I really need to
study it more closely.

The one question that jumps out at me right away, however, relates to saving
the options for the various list boxes in a separate (?) Word document or
table. Is that necessary? This form will not be completed on-line
(unfortunately) or on a network but on each respondent's own PC, so there's
no way to store the table/document in some common-access location.

I suppose I could hide the table within the form itself (I don't see it
buried in the VBA code the way you did for an earlier example on the same web
page), but (either way?) that would significantly increase the size of an
already pretty large file (pushing 1MB). I have to consider that some users
of this form, which will be downloaded first, then e-mailed when complete,
are probably still on dial-up internet connections.

"RBLampert" wrote:

I'm creating a form for a national organization that is divided into regions,
states, and chapters. There are a lot of chapters and state organizations,
far over the 25 entry limit for drop-down boxes, and I don't want to create a
drop-down box with over 200 entries if I turn off the limit. Is there a way
to link a set of drop-down boxes so that if the user selects a particular
region, in the State box, they'll only see the states that are part of that
region, and then, a second time, see only the chapters assigned to a
particular state when the state is selected?

  #4   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 Interdependent drop-down boxes in Word forms (part 1)

The various choices could all be hard coded into the form. Having them in a
separate document is an easy way to set them up and maintain them.

--
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

"RBLampert" wrote in message
...
Thanks, Doug. This looks like it'll do what I want but I really need to
study it more closely.

The one question that jumps out at me right away, however, relates to
saving
the options for the various list boxes in a separate (?) Word document or
table. Is that necessary? This form will not be completed on-line
(unfortunately) or on a network but on each respondent's own PC, so
there's
no way to store the table/document in some common-access location.

I suppose I could hide the table within the form itself (I don't see it
buried in the VBA code the way you did for an earlier example on the same
web
page), but (either way?) that would significantly increase the size of an
already pretty large file (pushing 1MB). I have to consider that some
users
of this form, which will be downloaded first, then e-mailed when complete,
are probably still on dial-up internet connections.

"RBLampert" wrote:

I'm creating a form for a national organization that is divided into
regions,
states, and chapters. There are a lot of chapters and state
organizations,
far over the 25 entry limit for drop-down boxes, and I don't want to
create a
drop-down box with over 200 entries if I turn off the limit. Is there a
way
to link a set of drop-down boxes so that if the user selects a particular
region, in the State box, they'll only see the states that are part of
that
region, and then, a second time, see only the chapters assigned to a
particular state when the state is selected?



  #5   Report Post  
Posted to microsoft.public.word.docmanagement
RBLampert RBLampert is offline
external usenet poster
 
Posts: 10
Default Interdependent drop-down boxes in Word forms (part 1)

Well, since, as I noted before, there isn't going to be a way for users of
the form to access a separate document, my choices remain either hide the
table in the document or hard code the sets of options. Hard coding would, I
suppose, use fewer kbytes. If I go that route, though, I'll probably have to
ask for help with the nested lists. We'll see.

Thanks for your help.

"Doug Robbins - Word MVP" wrote:

The various choices could all be hard coded into the form. Having them in a
separate document is an easy way to set them up and maintain them.

--
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

"RBLampert" wrote in message
...
Thanks, Doug. This looks like it'll do what I want but I really need to
study it more closely.

The one question that jumps out at me right away, however, relates to
saving
the options for the various list boxes in a separate (?) Word document or
table. Is that necessary? This form will not be completed on-line
(unfortunately) or on a network but on each respondent's own PC, so
there's
no way to store the table/document in some common-access location.

I suppose I could hide the table within the form itself (I don't see it
buried in the VBA code the way you did for an earlier example on the same
web
page), but (either way?) that would significantly increase the size of an
already pretty large file (pushing 1MB). I have to consider that some
users
of this form, which will be downloaded first, then e-mailed when complete,
are probably still on dial-up internet connections.

"RBLampert" wrote:

I'm creating a form for a national organization that is divided into
regions,
states, and chapters. There are a lot of chapters and state
organizations,
far over the 25 entry limit for drop-down boxes, and I don't want to
create a
drop-down box with over 200 entries if I turn off the limit. Is there a
way
to link a set of drop-down boxes so that if the user selects a particular
region, in the State box, they'll only see the states that are part of
that
region, and then, a second time, see only the chapters assigned to a
particular state when the state is selected?




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
Reveal codes in a word document FUN101 Microsoft Word Help 4 May 16th 23 08:47 PM
How to put graphics on envelopes? Steve Koenig Microsoft Word Help 21 April 29th 23 02:47 AM
Word & WordPerfect MrsMac Microsoft Word Help 5 June 10th 06 03:14 AM
hard space between words. Sandy L Microsoft Word Help 7 May 5th 06 08:25 PM
Word should allow to 'divide' page by 3 or 4, not just 2 CandasK Page Layout 2 February 28th 06 10:16 PM


All times are GMT +1. The time now is 09:58 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"