Information on cell color format

A

Amit GK

CELL("color",reference)

returns 1 if the cell is formatted in color for negative values; otherwise
returns 0 (zero).
 
B

Bob Phillips

Function GetColorindex(rng as Range)
GetColorindex = rng.Interior.Colorindex
End Function

but as a colour change triggers no events, it will not update if you change
the colour.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Top