dynamic validation

B

boris

How do I make dynamic cell validation? In other words, I
want the list (or reference to a range for list options)
to change, based on the cell that is to the left of the
cell being validated.

Example:

A1 choices F or M
B1 choices If(A1=F, range1, if(A1=M, range2, range3)).

I know I have done something like this somewhere, but
can't remember where to look back.

Boris
 
A

Aladin Akyurek

You need some double quotes...

If(A1="F", range1, if(A1="M", range2, range3))
 

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