Here's what I'd like to achieve:
It's for budget planning.
In b3, if b1>=b2, then display value of (b1-b2); if b1<b2 then hide value or
display nothing.
In b4, if b1<b2, then display value of (b1-b2) in red; if b1>=b2, then hide
value or display nothing.
I could manage the font colour, but couldn't get the formula to work.
Any help is appreciated.
Tony
Mike - 07 Mar 2007 12:51 GMT
in B3
=IF(B1>=B2,B1-B2,"")
in B4
=IF(B1<B2,B1-B2,"")
In addition for B4 apply a conditional format to set it to red if value is <0
Mike
> Here's what I'd like to achieve:
>
[quoted text clipped - 9 lines]
>
> Tony
Tony - 07 Mar 2007 23:57 GMT
Thanks for your reply, Mike. I tried the formulas but they didn't work for
some reason. They are very closed to the ones that I had tried myself.
Nevertheless, I appreciate your reply and help. Thanks.
> in B3
> =IF(B1>=B2,B1-B2,"")
[quoted text clipped - 19 lines]
> >
> > Tony
Dana DeLouis - 07 Mar 2007 19:23 GMT
Another option might be to enter this equation in both B3 & B4.
=B1-B2
In B3, use a custom format to hide negatve values
#.00;;#.00
In B4, use a custom format to hide non-negative values, and display the neg.
values in Red.
;[Red] -#.00;

Signature
HTH :>)
Dana DeLouis
Windows XP & Office 2007
> Here's what I'd like to achieve:
>
[quoted text clipped - 11 lines]
>
> Tony
Tony - 07 Mar 2007 23:58 GMT
Works like a charm. Thank you Dana.
> Another option might be to enter this equation in both B3 & B4.
>
[quoted text clipped - 23 lines]
> >
> > Tony