Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
jeremy jeremy is offline
external usenet poster
 
Posts: 16
Default Help with Ask fields in Word 2007

I have a word template that I have created. I am going to be distributing
this document internationally and don't want to have to manage change
controls on multiple documents.

Since we decided against using an Infopath form via forms services I had to
scale back on the functionality in a few areas such as repeating rows and
fields. That being said, I can't figure out how to accomplish something that
should be rather simple.

I need to ask the user to enter their region when the form template is first
opened, display it in the footer. I can't figure out how to only allow entry
values of "NA" for North America or "EA" for Europe/Asia. I need the entries
to one of these two because I also need to be able to adjust the format of
all of the date dropdowns in the form based on this selection.

I of course don't know how to accomplish this. I suspect this will have to
be done with VBA instead of ASK fields but I am not sure how to accomplish
Asking for one of two answers without placing dropdown in the form or how to
change the format of the date pickers based on the selection.

Any help would be greatly appreciated.
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
macropod[_2_] macropod[_2_] is offline
external usenet poster
 
Posts: 2,059
Default Help with Ask fields in Word 2007

Hi Jeremy,

You can't limit the input in either ASK fields or FILLIN fields. For what you've described, it seems you need something akin to a
DropDown formfield. However, for a DropDown formfield to work, you'd need to apply forms protection to the Section in which it
appears in the document, and that limits the users' ability to do other edits as well.

--
Cheers
macropod
[Microsoft MVP - Word]


"Jeremy" wrote in message ...
I have a word template that I have created. I am going to be distributing
this document internationally and don't want to have to manage change
controls on multiple documents.

Since we decided against using an Infopath form via forms services I had to
scale back on the functionality in a few areas such as repeating rows and
fields. That being said, I can't figure out how to accomplish something that
should be rather simple.

I need to ask the user to enter their region when the form template is first
opened, display it in the footer. I can't figure out how to only allow entry
values of "NA" for North America or "EA" for Europe/Asia. I need the entries
to one of these two because I also need to be able to adjust the format of
all of the date dropdowns in the form based on this selection.

I of course don't know how to accomplish this. I suspect this will have to
be done with VBA instead of ASK fields but I am not sure how to accomplish
Asking for one of two answers without placing dropdown in the form or how to
change the format of the date pickers based on the selection.

Any help would be greatly appreciated.


  #3   Report Post  
Posted to microsoft.public.word.docmanagement
macropod[_2_] macropod[_2_] is offline
external usenet poster
 
Posts: 2,059
Default Help with Ask fields in Word 2007

Hi Jeremy,

You can't limit the input in either ASK fields or FILLIN fields. For what you've described, it seems you need something akin to a
DropDown formfield. However, for a DropDown formfield to work, you'd need to apply forms protection to the Section in which it
appears in the document, and that limits the users' ability to do other edits as well.

--
Cheers
macropod
[Microsoft MVP - Word]


"Jeremy" wrote in message ...
I have a word template that I have created. I am going to be distributing
this document internationally and don't want to have to manage change
controls on multiple documents.

Since we decided against using an Infopath form via forms services I had to
scale back on the functionality in a few areas such as repeating rows and
fields. That being said, I can't figure out how to accomplish something that
should be rather simple.

I need to ask the user to enter their region when the form template is first
opened, display it in the footer. I can't figure out how to only allow entry
values of "NA" for North America or "EA" for Europe/Asia. I need the entries
to one of these two because I also need to be able to adjust the format of
all of the date dropdowns in the form based on this selection.

I of course don't know how to accomplish this. I suspect this will have to
be done with VBA instead of ASK fields but I am not sure how to accomplish
Asking for one of two answers without placing dropdown in the form or how to
change the format of the date pickers based on the selection.

Any help would be greatly appreciated.


  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Peter Jamieson Peter Jamieson is offline
external usenet poster
 
Posts: 4,582
Default Help with Ask fields in Word 2007

One possibility would be to tell your users that anything they enter
that starts with "N" means "North America" and anything that starts with
anything else (probably including spaces) means Europe/Asia.

Then you could use something like

{ ASK inputregion "your prompt text" \o }{ IF "{ REF inputregion \*Upper
}" = "N" "{ SET region "NA" }" "{ SET region "EA" }" }

Then you can use { region } or { REF region } to display the region code.

Not very nice, but if you would prefer to avoid VBA it may be enough.

Peter Jamieson

http://tips.pjmsn.me.uk

On 22/01/2010 06:37, Jeremy wrote:
I have a word template that I have created. I am going to be distributing
this document internationally and don't want to have to manage change
controls on multiple documents.

Since we decided against using an Infopath form via forms services I had to
scale back on the functionality in a few areas such as repeating rows and
fields. That being said, I can't figure out how to accomplish something that
should be rather simple.

I need to ask the user to enter their region when the form template is first
opened, display it in the footer. I can't figure out how to only allow entry
values of "NA" for North America or "EA" for Europe/Asia. I need the entries
to one of these two because I also need to be able to adjust the format of
all of the date dropdowns in the form based on this selection.

I of course don't know how to accomplish this. I suspect this will have to
be done with VBA instead of ASK fields but I am not sure how to accomplish
Asking for one of two answers without placing dropdown in the form or how to
change the format of the date pickers based on the selection.

Any help would be greatly appreciated.

  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Peter Jamieson Peter Jamieson is offline
external usenet poster
 
Posts: 4,582
Default Help with Ask fields in Word 2007

One possibility would be to tell your users that anything they enter
that starts with "N" means "North America" and anything that starts with
anything else (probably including spaces) means Europe/Asia.

Then you could use something like

{ ASK inputregion "your prompt text" \o }{ IF "{ REF inputregion \*Upper
}" = "N" "{ SET region "NA" }" "{ SET region "EA" }" }

Then you can use { region } or { REF region } to display the region code.

Not very nice, but if you would prefer to avoid VBA it may be enough.

Peter Jamieson

http://tips.pjmsn.me.uk

On 22/01/2010 06:37, Jeremy wrote:
I have a word template that I have created. I am going to be distributing
this document internationally and don't want to have to manage change
controls on multiple documents.

Since we decided against using an Infopath form via forms services I had to
scale back on the functionality in a few areas such as repeating rows and
fields. That being said, I can't figure out how to accomplish something that
should be rather simple.

I need to ask the user to enter their region when the form template is first
opened, display it in the footer. I can't figure out how to only allow entry
values of "NA" for North America or "EA" for Europe/Asia. I need the entries
to one of these two because I also need to be able to adjust the format of
all of the date dropdowns in the form based on this selection.

I of course don't know how to accomplish this. I suspect this will have to
be done with VBA instead of ASK fields but I am not sure how to accomplish
Asking for one of two answers without placing dropdown in the form or how to
change the format of the date pickers based on the selection.

Any help would be greatly appreciated.

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
Import Excel 2007 cell data into word 2007 fields? Tec92407 Microsoft Word Help 1 July 25th 09 07:58 AM
Word 2007 Mail Merge Labels skips fields using update fields Dianne Griffin Mailmerge 3 August 8th 08 03:59 PM
Using Ask Fields in Word 2007 Vicky Microsoft Word Help 1 November 21st 07 06:21 PM
2007 Merge Fields (database) lock fields after selection VBA Summer Microsoft Word Help 0 September 20th 07 11:31 AM
Missing Fields on right side of e-mail "Match Fields" Office 2007 James Mailmerge 3 August 24th 07 05:18 PM


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