Nested if (again .. Sorry)

DoosanRuss

New Member
Joined
Aug 3, 2010
Messages
25
Good Afternoon Ladies and Gents
(Excel 2003 (XP) user)

trying to nest up a few IF Formulas into one equation

IF(AND(B56=FALSE,B57=FALSE,B58=FALSE), “TICK PRICING OPTIONS”, “ ”)<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
IF(AND(B56=TRUE,B57=FALSE,B58=FALSE), “OPT1”, “ ”)<o:p></o:p>
IF(AND(B56=FALSE,B57=TRUE,B58=FALSE), “OPT2”, “ ”)<o:p></o:p>
IF(AND(B56=FALSE,B57=FALSE,B58=TRUE), “OPT3”, “ ”)<o:p></o:p>
IF(AND(B56=FALSE,B57=TRUE,B58=TRUE), “OPT2”, “ ”)<o:p></o:p>
IF(AND(B56=TRUE,B57=TRUE,B58=TRUE), “OPT1”, “ ”) <o:p></o:p>

basically i have 3 check boxes in B56, B57 & B58

based on the True or False answers of the Checkboxes i want to select different Pricing Options (from different sheets, OPT1,2 & 3)

As Always any help gratefully received

Best Regards

Russ
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Try this:

=IF(B56,"OPT1",IF(B57,"OPT2",IF(B58,"OPT3","TICK PRICING OPTIONS")))
 
Upvote 0
Hi

This solution would give you the option of expanding the selection if needed -

Code:
=CHOOSE(1+SUM(--($B$56),--($B$57)*2,--($B$58)*4),"TICK OPTION","OPT1","OPT2","","OPT3","","OPT2","OPT1")

hth

Mike
 
Upvote 0
Thanks guys

i've tried to extract what you've given me to use on other cells, but i think i'm to thick and i don't have a lot of time to complete this darn spreadsheet.

I've re-posted another query similar to the first problem.

utilizing the IF(AND(NOT set of arguments.

Thanks all the same Russ
 
Upvote 0
Thanks guys

i've tried to extract what you've given me to use on other cells, but i think i'm to thick and i don't have a lot of time to complete this darn spreadsheet.

I've re-posted another query similar to the first problem.

utilizing the IF(AND(NOT set of arguments.

Thanks all the same Russ
Ignoring the other query for a moment, are you saying you tried this in a cell and then tried to copy it into others, without success?
When the formula is in other cells, are there tick boxes on each row or should the formula refer to the same set of cells?
 
Upvote 0

Forum statistics

Threads
1,216,725
Messages
6,132,345
Members
449,719
Latest member
excel4mac

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top