Cell E4 contains a formula which counts the number of elements stored in a previous sheet and then substracts them from the total counted elements on this sheet. For example
- previous sheet contains 3 elements
- current sheets contains 0 elements (see below cell
D4
) - result is (-3) (see below cell
E4
; formula is="(" & D4-'09.16'!D4 & ")"
I would like to use conditional formatting so that if the value in cell E4
is smaller than D4
the color of the text should be red and green if the value is above. Sadly, this doesn't work with conditional formatting and I presume it has something to do with the fact that cell E4
contains a formula.
Actually as can be seen in the print screen, I would like to apply this criteria for multiple cells. So a comparison of the values in the columns E
and D
Print screen:
so that if the value in cell E4 is smaller than D4
Shouldn't that beF4
instead ofE4
? – Siddharth Rout'09.16'!D4 < 0
if you are comparingD4
to `D4-'09.16'!D4``? – arcadeprecinct