Forum Discussion
ChrisJP
Nov 25, 2018Copper Contributor
Conditional Formatting values across tables
Hi, Could someone please assist me with this. I have attached a photo to add context. When I write values into the green table I would like the figures to become red if they are less then the corr...
- Nov 25, 2018
I'd suggest the rule with formula
=(E3<A3)*NOT(ISBLANK(E3))
applied to entire range. With that you don't format blank cells and do not generate a bunch of rules (one rule for each cell) as with Format painter.
SergeiBaklan
Nov 25, 2018Diamond Contributor
I'd suggest the rule with formula
=(E3<A3)*NOT(ISBLANK(E3))
applied to entire range. With that you don't format blank cells and do not generate a bunch of rules (one rule for each cell) as with Format painter.
ChrisJP
Nov 26, 2018Copper Contributor
Hi,
what would the 2 formulas be, if the value was < A3 but only within 10% to equal yellow
and if it was greater then <10% = red
what would the 2 formulas be, if the value was < A3 but only within 10% to equal yellow
and if it was greater then <10% = red
- SergeiBaklanNov 26, 2018Diamond Contributor
Hi,
When yellow
=(E3<A3)*(E3>=0.9*A3)
and red
=(E3<0.9*A3)*NOT(ISBLANK(E3))
if I understood you correctly