Drop Down Form Fields

JWM1346

New Member
Joined
May 6, 2009
Messages
10
I have three Drop Down boxes with different values in each (a name in one, street address in one and city and state in last). Is it possible that when an item is selected in the first one, the other two boxes automatically fill in with the correct information?
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
maybe not...

or at least you can set a drop down to limit it's choice to a specific range depending on the value in the first drop down, data validation / list then in the range use a formula such as: IF(firstDV="this",RANGE1,IF(firstDV="that",RANGE2))

DV being Data validation or drop down list.

Is this what you are referring to?
 
Upvote 0
No. I need then to update automatically. Its in a Word doc, not Excel. I was given the wrong information.
 
Upvote 0
You can do this in Word with one DropDown FormField and two sets of formula fields. Assuming the DropDown FormField has the names and has an internal bookmark 'Dropdown1'. Then, if you checke the DropDown FormField's 'calculate on exit' property, you can use formula fields coded like:
{IF{REF Dropdown1}= "Joe Blow" "Joe Blow's street address"}
{IF{REF Dropdown1}= "John Doe" "John Doe's street address"}

{IF{REF Dropdown1}= "Joe Blow" "Joe Blow's city & state"}
{IF{REF Dropdown1}= "John Doe" "John Doe's city & state"}

Note: The field brace pairs (ie '{ }') for the above examples are created via Ctrl-F9 - you can't simply type them or copy & paste them from this message.
 
Upvote 0

Forum statistics

Threads
1,225,613
Messages
6,186,003
Members
453,334
Latest member
Prakash Jha

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top