> I want to how to put a formula for the beow requirement.
>
[quoted text clipped - 4 lines]
>
> Zul
Hi TM,
Jumping in here,
I hadn't thought of using the MAX function for this issue. I like the way it
eliminates the need to repeat the main formula, which has to be done when
using the IF function.
On occasion, I have quite a long formula which sometimes returns an error,
depending on the presence, or not, of data in the contributing cells. I end
up using the something like the following:
IF(ISERROR(Quite Long Formula)=True,"",Quite Long Formula)
Is there a way to do this without having to repeat the Quite Long Formula,
as you did with the MAX function in the original question?
Regards - Dave.
> =MAX(SUM(A1:A2),0)
Stephen Bye - 29 May 2008 20:36 GMT
> On occasion, I have quite a long formula which sometimes returns an error,
> depending on the presence, or not, of data in the contributing cells. I
> end
> up using the something like the following:
> IF(ISERROR(Quite Long Formula)=True,"",Quite Long Formula)
> Is there a way to do this without having to repeat the Quite Long Formula,
Put Quite Long Formula into Some Other Cell.
Then use:
=IF(ISERROR(Some Other Cell),"",Some Other Cell)
That way, your formula only needs to be evaluated once.
Dave - 31 May 2008 16:19 GMT
Hi Stephen, Thanks for that idea. Don't know why I don't think of these
things myself. This forum is an amazing wealth of knowledge and ideas.
Regards - Dave.
> Put Quite Long Formula into Some Other Cell.
> Then use:
> =IF(ISERROR(Some Other Cell),"",Some Other Cell)
> That way, your formula only needs to be evaluated once.