From: Jaclyn on
Is there any way to automatically adjust the fill color of a cell based on 3
values entered into 3 cells?

Specifically, if I have entered the values 100, 120, and 50 into cells A1,
A2, and A3, respectively, is there a way to automatically fill cell A4 with
the RGB color Red=100, Green=120, Blue=50?
From: מיכאל (מיקי) אבידן on
Maybe: [A4].Interior.Color = Evaluate(RGB([A1], [A2], [A3]))
Micky


"Jaclyn" wrote:

> Is there any way to automatically adjust the fill color of a cell based on 3
> values entered into 3 cells?
>
> Specifically, if I have entered the values 100, 120, and 50 into cells A1,
> A2, and A3, respectively, is there a way to automatically fill cell A4 with
> the RGB color Red=100, Green=120, Blue=50?
From: Phil Hibbs on
micky wrote:
> Maybe: [A4].Interior.Color = Evaluate(RGB([A1], [A2], [A3]))
> Micky

You'd have to put that in a Worksheet_Change macro.

Phil Hibbs.
 | 
Pages: 1
Prev: Fill Series
Next: Unique Random Numbers