2 validation lists for the same value on another cell

R

rumkus

Hi

Column A = Top
Column B validations list = Top list 1
Column C validations list = Top list 2
or
Column A = Bottom
Column B validations list = Bottom list 1
Column C validations list = Bottom list 2

Is this possible without vba ? Thanks in advance.
 
T

T. Valko

Assuming you have 4 lists named:

Top1
Top2
Bottom1
Bottom2

As the source for B1:

=INDIRECT(A1&1)

As the source for C1:

=INDIRECT(A1&2)

Note that if the lists are dynamic ranges defined using functions like
OFFSET this won't work.
 
R

rumkus

Assuming you have 4 lists named:

Top1
Top2
Bottom1
Bottom2

As the source for B1:

=INDIRECT(A1&1)

As the source for C1:

=INDIRECT(A1&2)

Note that if the lists are dynamic ranges defined using functions like
OFFSET this won't work.

Will change all dynamic ranges surely.
Thanks a lot T.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top