Drop down list

M

mudcat

How can you change the items in a list after you have made a selection in a
previous list: i.e. if you select 1 in the first drop down you want the
options in the next drop down to be A-K and if you select 2 you want the list
to be L-M.
 
T

T. Valko

Create the two lists.

F1:F10 = list A-K
G1:G10 = list L-Z

A1 = drop down list with the selections of either 1 or 2

B1 = dependent drop down based on the selection made from the drop down in
cell A1

As the source for the drop down in cell B1:

=CHOOSE($A$1,$F$1:$F$10,$G$1:$G$10)

Biff
 
Top