Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
KC KC is offline
external usenet poster
 
Posts: 107
Default Cascade selection of Drop down menus

Using Excel 2003. I have created several drop down options using Validation
lists. My question is can I have the program autoselect several options from
other validation lists based on my selection of another validation list?

For example, I have drop down lists A, B, and C. Each with 3 selections.
So instead of changing Lists A, B, and C seperatly, can I have B, and C
automatically go to selection 2 when I select A2?

Hopefully that makes sense.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 158
Default Cascade selection of Drop down menus

If lists B and C are always triggered from the selection in list A, why not
replace B and C dropdowns with IF statements or VLOOKUP:

=IF(A2="Blue","Beige",IF(A2="Red","Stone","Black") )

-OR-

=VLOOKUP(A2,othersheet!A1:B1000,2,FALSE)

The IF statement simply checks the values in A and, if it finds a match,
sets the value in B. But that can be awkward and hard to update if you have
lots of possible combinations. Better is a VLOOKUP which checks a reference
list elsewhere (in this case, on another workheet I named "othersheet") and
returns the value on the second column (that's the "2") when it finds a match
for A2 in the first column.

For column C, expand the reference list to three columns (A1:C1000) and use
a similar formula to grab the matching value in the third column:

=VLOOKUP(A2,othersheet!A1:B1000,3,FALSE)

HTH

"KC" wrote:

Using Excel 2003. I have created several drop down options using Validation
lists. My question is can I have the program autoselect several options from
other validation lists based on my selection of another validation list?

For example, I have drop down lists A, B, and C. Each with 3 selections.
So instead of changing Lists A, B, and C seperatly, can I have B, and C
automatically go to selection 2 when I select A2?

Hopefully that makes sense.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
KC KC is offline
external usenet poster
 
Posts: 107
Default Cascade selection of Drop down menus

If lists B and C are always triggered from the selection in list A, why not
replace B and C dropdowns with IF statements or VLOOKUP:


Lists B & C are not ALWAYS triggered, only sometimes. I'd still like to
maintain control over them if I need to manually change them. Can I retain
this with a VLOOKUP?
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 158
Default Cascade selection of Drop down menus

Oh, that makes more sense than what I was inferring. You want "default"
values to show up in B and C, based on what gets selected in A, but still the
ability to override them. My suggested IF or VLOOKUP solutions could still
work, but that would mean those cells would start off with formulas in them
that would be overwritten by data if you selected another option from the
drop-down. Maybe someone else has a better idea.


"KC" wrote:

If lists B and C are always triggered from the selection in list A, why not
replace B and C dropdowns with IF statements or VLOOKUP:


Lists B & C are not ALWAYS triggered, only sometimes. I'd still like to
maintain control over them if I need to manually change them. Can I retain
this with a VLOOKUP?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to 'copy' a drop down box selection? Joni Excel Discussion (Misc queries) 5 June 30th 06 08:30 AM
drop down menus jagermeist1 Excel Discussion (Misc queries) 4 December 16th 05 03:25 PM
formulas for drop down menus Char Excel Discussion (Misc queries) 0 July 18th 05 07:29 PM
how do i set up drop down menus to populate cells in excel? Louise Scott Excel Discussion (Misc queries) 2 May 29th 05 07:19 PM
Drop Down Menu's abfabrob Excel Discussion (Misc queries) 4 February 4th 05 02:19 PM


All times are GMT +1. The time now is 02:49 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"