Validation of multiple selections

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What I want to do is a IF then statment to choose which validation area i
want to choose from. is this possible? or what is the best way to do this?
 
What I want to do is a IF then statment to choose which validation area i
want to choose from. is this possible? or what is the best way to do this?

Another way of leveraging the example that Debra posted in the link is
an if statement in the data validation. If you have each section as a
named range then you could write a statement as follows for data
validation (using the fruit and veg example from the link in Debra's
Post)

=if(foodSelected ="Fruit",Fruit,if(foodSelected="Vegetable",Vegies,"-
select Food Type"))
Since foodSelected is your first dropdown you can evaluate against it
to populate your next drop down choice. Also as you can see this kind
of set up will allow for a default in the dropdown.
 

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

Back
Top