Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 275
Default Multiple IF function

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

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,522
Default Multiple IF function

If desired, send your file to my address below. I will only look if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after examples and expected results.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"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


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
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



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 275
Default Multiple IF function

Thanks guys,

I've spent the last few hours working on this and I figured it out! My
formula as follows:

=IF($B$3="Male", IF($B$4="Non-Smoker", 'Premium Rate Table'!L4, 'Premium
Rate Table'!L5), IF($B$3="Female", IF($B$4="Non-Smoker",'Premium Rate
Table'!L6,'Premium Rate Table'!L7)))

B3 = Drop down list where you can choose "Male" or "Female"
B4 = Drop down lise where you can choose "Non-Smoker" or "Smoker"
'Premium Rate Table' = Separate Worksheet with the Premium Rate Tables.
L4 = Male Non-Smoker Premium Rate
L5 = Male Smoker Premium Rate
L6 = Female Non-Smoker Premium Rate
L7 = Female Smoker Premium Rate
The L# fields already have a VLOOKUP formula to obtain the correct Premium
Rate when the relevant Age is entered.

Thanks for your responses anyway.

Anthony


  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 834
Default Multiple IF function

You didn't exactly help us to help you did you? Your original post gave
nothing that suggested that the option was split over two cells.

You can simplify your formula to

=IF($B$3="Male",IF($B$4="Non-Smoker",'Premium Rate Table'!L4,'Premium Rate
Table'!L5),
IF($B$4="Non-Smoker",'Premium Rate Table'!L6,'Premium Rate Table'!L7))

--

HTH

Bob

"Anthony" wrote in message
...
Thanks guys,

I've spent the last few hours working on this and I figured it out! My
formula as follows:

=IF($B$3="Male", IF($B$4="Non-Smoker", 'Premium Rate Table'!L4, 'Premium
Rate Table'!L5), IF($B$3="Female", IF($B$4="Non-Smoker",'Premium Rate
Table'!L6,'Premium Rate Table'!L7)))

B3 = Drop down list where you can choose "Male" or "Female"
B4 = Drop down lise where you can choose "Non-Smoker" or "Smoker"
'Premium Rate Table' = Separate Worksheet with the Premium Rate Tables.
L4 = Male Non-Smoker Premium Rate
L5 = Male Smoker Premium Rate
L6 = Female Non-Smoker Premium Rate
L7 = Female Smoker Premium Rate
The L# fields already have a VLOOKUP formula to obtain the correct Premium
Rate when the relevant Age is entered.

Thanks for your responses anyway.

Anthony



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
multiple function is it even possible Kris M Excel Worksheet Functions 7 November 22nd 08 09:57 PM
Multiple IF Function Teri Excel Discussion (Misc queries) 6 September 15th 08 04:28 PM
Multiple results from multiple criteria using IF function David Platt Excel Discussion (Misc queries) 2 January 15th 07 10:19 AM
Multiple Sheet, Multiple Criteria Look-Up Function Help Dan Oakes Excel Worksheet Functions 5 December 29th 06 01:37 PM
Multiple OR function Scott P Excel Worksheet Functions 6 January 14th 05 02:10 PM


All times are GMT +1. The time now is 07:28 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"