Problems with multiple IF statements into one Formula

wberg82

New Member
Joined
Feb 19, 2016
Messages
38
=IF((OR(B8=0.375,B8=0.5)),CEILING(C8*D8+E8+F8*0.057+G8*0.094+IF(AND(B8=0.375,H8="X"),0.328125)+IF(AND(B8=0.375,I8="X"),0.453125)*0.25,CEILING(C8*D8+E8+F8*0.069+G8*0.125+IF(AND(B8=0.5,H8="X"),0.4375)+IF(AND(B8=0.5,I8="X"),0.59375)*0.25,0)))

The above formula outputs "0". How I want this formula to work is if the user enters either .375 or .5 to cell B8 the output will equal a different rounded up (to nearest .25) number. If user enters .375 - the output should add a set of numbers. If user enters .5 - the output should add up a different set of numbers.

What am I doing wrong??? I appreciate the help :)

Thanks!
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
What am I doing wrong???

Not expressing appreciation when people answer your (other) questions.

There are so many things that you're doing wrong. I'll be brief.

At a minimum, you have a misplaced right-parenthesis, such that the second CEILING function is effectively the second paramater of the first CEILING function instead of the third parameter of the IF function, as I believe you intend.

Also, you are mysteriously multiplying by 0.25, when I suspect the intention is for 0.25 to be the second parameter of each CEILING function, as I demonstrated in my response to your previous question.

Good luck!

PS.... The formula design can be simplified so that you avoid the AND conditions.
 
Last edited:
Upvote 0
The CEILING function syntax has the following arguments:


Number. The value you want to round.
Significance. The multiple to which you want to round.


In the first Ceiling function you have:
Number. C8*D8+E8+F8*0.057+G8*0.094+IF(AND(B8=0.375,H8="X"),0.328125)+IF(AND(B8=0.375,I8="X"),0.453125)*0.25.
Significance. CEILING(C8*D8+E8+F8*0.069+G8*0.125+IF(AND(B8=0.5,H8="X"),0.4375)+IF(AND(B8=0.5,I8="X"),0.59375)*0.25,0).

In the Second Ceiling function you have:
Number. C8*D8+E8+F8*0.069+G8*0.125+IF(AND(B8=0.5,H8="X"),0.4375)+IF(AND(B8=0.5,I8="X"),0.59375)*0.25.
Significance. 0





The result of the second ceiling is 0, that argument is the one that you pass to the first ceiling, then the result of the first ceiling is 0.
 
Upvote 0
do they work individually, then assemble bit by bit
 
Upvote 0

Forum statistics

Threads
1,214,545
Messages
6,120,132
Members
448,947
Latest member
test111

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