IF Statement

G

Guest

I need a solution for the example below please,

A1 could hold value 9.5, 7.5 or 0
If A1 =9.5 then I need A2 to show a drop down validation list which is also
at V1.
If A1=7.5 then I need A2 to show a drop down validation list which is also
at V2.
If A1=0 then I need A2 to show a drop down validation list which is also at
V3.

Basically I need to copy an exsisting validation list from V1,2 or 3
depending on the value of A1.

Any help is appriciated.
 
G

Guest

one way:

in B1:

=IF(A1=9.5,"List1",IF(A1=7.5,"List2","List3"))

where List1 to List3 are your lists (named ranges) at V1 to V3

in A2: Data Validation==>List==>Source: =INDIRECT(B1)

HTH
 
G

Guest

THANK YOU x1000000000000000000000000000000.

Toppers said:
one way:

in B1:

=IF(A1=9.5,"List1",IF(A1=7.5,"List2","List3"))

where List1 to List3 are your lists (named ranges) at V1 to V3

in A2: Data Validation==>List==>Source: =INDIRECT(B1)

HTH
 

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