Formula Help Please!

neilme

New Member
Joined
Jul 2, 2007
Messages
2
What is wrong with this formula, it says I've entered too many functions when I put in the first zero, without the zero it does not calculate correctly.

=IF($BJ13="Y",0,$BK13*W13,IF(BU$9<$BM13,0,IF(BU$9<$BM13,0,((BU$9-$BM13)/365)*$BS13)))
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Code:
IF($BJ13="Y",0,$BK13*W13,

Because at this point in the formula, you already have a TRUE value and a FALSE value.

What are you trying to do exactly?
 
Upvote 0
G'day Neilme,

Your formula does contain too many arguments. The IF statement works like this:
Code:
IF(something is true, then perform this action, if false perform this action)

The comma separates each argument, as in my example above.

Applying this to your formula, your IF statement does not make sense; in fact, here is the first part of your formula, which is a complete IF statement:
Code:
=IF($BJ13="Y",0,$BK13*W13)
However, instead of closing the formula, you include more IF statements. You will need to give us a run-down of what your formula is trying to do before we can probably give any advice to fix your formula.

Regards,

Mitch
 
Upvote 0

Forum statistics

Threads
1,214,826
Messages
6,121,792
Members
449,048
Latest member
greyangel23

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