What's wrong with this formula?

grrrrr

Board Regular
Joined
Apr 20, 2011
Messages
60
What's wrong with this formula:

=IF(L8>0,(IF('Performance tracker'!B37>=(35%*DB!I71),"50.00",(IF('Performance tracker'!B37<=(34.99%*DB!I71),"25.00"),"0"))))

I'm getting a contained an error message
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
If you're trying to output numbers as the final values, then you don't need quotes around them.
What is the exact error message you're getting?
 
Upvote 0
Try this :
Code:
=IF(L8>0,(IF('Performance tracker'!B37>=(35%*DB!I71),"50.00",(IF('Performance tracker'!B37<=(34.99%*DB!I71),"25.00","0")))))
 
Upvote 0
Great thanks!

Was it just the quotes that needed to come out then or was there another change in there?
 
Upvote 0
Just had another look, try this:-
=IF(L8>0,IF('Performance tracker'!B37>=(35%*DB!I71),50,IF('Performance tracker'!B37<=(34.99%*DB!I71),25.00,0))),0)
 
Upvote 0
I think the innermost if statement had too many arguments.

It'd be best if you use Richard's formula as it's more stable with another 0 outside.

If you want to use those numbers (from the formula) later on, it would be best if you get rid of the quotes because it will recognize them as text if you do not remove the quotes.
 
Upvote 0
Compare the number of brackets from the solution to your original posting
 
Upvote 0

Forum statistics

Threads
1,224,608
Messages
6,179,872
Members
452,949
Latest member
Dupuhini

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