View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Phillips[_4_] Bob Phillips[_4_] is offline
external usenet poster
 
Posts: 834
Default Multiple IF function

How about

=INDEX(A1:A4,MATCH(selected_option,option_cells,0) )

--

HTH

Bob

"Anthony" wrote in message
...
Hi,

I'm trying to create a Life Insurance Calculator within Excel. I've
already
done a VLOOKUP to get the Relevant Premium Rate, but now I need to be able
to
reference back to them given the option. The four options available a
1. Male Non-Smoker
2. Male Smoker
3. Female Non-Smoker
4. Female Smoker

For example:
1. If Male AND a Non-Smoker, I want to refer to Cell A1
2. If Male AND a Smoker, I want to refer to Cell A2
3. If Female AND a Non-Smoker, I want to refer to Cell A3
4. If Female AND a Smoker, I want to refer to Cell A4

Any help is much appreciated.

Thanks