Your parentheses don't match, & the error being highlighted is that you
don't have enough arguments for the first IF statement.
To cure that, try
=IF(O11<0,O11,IF(O11="","",Q10+(O11/100)*95))
or
=IF(O11<0,O11,IF(O11="","",Q10+O11*95%))
But that may not be what you want. If you're trying to produce a cumulative
total, you may want something more like
=IF(O11<0,Q10+O11,IF(O11="",Q10,Q10+O11*95%))

Signature
David Biddulph
> Dave,
>
[quoted text clipped - 36 lines]
>>> >
>>> > Eamon
Eamon - 18 Oct 2006 21:53 GMT
David,
Just tried =IF(O11<0,Q10+O11,IF(O11="",Q10,Q10+O11*95%)) and works perfect
many thanks.
Thanks to David F as well.
Your efforts are much appreciated. Thanks again.
Best regards,
Eamon
> Your parentheses don't match, & the error being highlighted is that you
> don't have enough arguments for the first IF statement.
[quoted text clipped - 47 lines]
>>>> >
>>>> > Eamon
Re the error only, it looks like the if got "closed" early. Try this:
=IF(O11<0,O11,IF(O11="","",Q10+(O11/100)*95))

Signature
Kevin Vaughn
> Dave,
>
[quoted text clipped - 35 lines]
> >> >
> >> > Eamon
Eamon - 18 Oct 2006 21:55 GMT
Kevin,
Thanks as well for your help, but have it solved with David's formula.
Best regards,
Eamon
> Re the error only, it looks like the if got "closed" early. Try this:
>
[quoted text clipped - 41 lines]
>> >> >
>> >> > Eamon