I am trying to conditionally format the color of a column (% change). My chart has both revenues and costs. I want the color to be different depending on the category. If actuals are below the budget for revenue it should be red and if actuals are below the budget for the expenses it should be green.
I created a beast mode called "Color Logic" to help with the coloration:
```
CASE
-- Income is bad when Actual < Budget (negative variance)
WHEN Level 1 Description
= 'INCOME TOTAL' AND Actuals
< Budget
THEN -1
-- Expenses/COGS are good when Actual < Budget (positive variance)
WHEN Level 1 Description
IN ('Expenses', 'COGS') AND Actuals
< Budget
THEN 1
-- Income is good when Actual >= Budget
WHEN Level 1 Description
= 'INCOME TOTAL' AND Actuals
>= Budget
THEN 1
-- Expenses/COGS are bad when Actual >= Budget
WHEN Level 1 Description
IN ('Expenses', 'COGS') AND Actuals
>= Budget
THEN -1
ELSE 0
END
```
However when I make a color rule using this color, it only colors this column (which I don't even want on the able). I really want to color my "% change" column using the output of the beast mode. Is there a way to do this?