Hi. I'm setting cell background color
Cells(ctr, 4).Interior.Color = RGB(0, 191, 255)
Is there some possibility to write the color definition in different way, eg.
'alice blue' or '#F0F8FF'?
Greetings. P.
Mike H - 19 Sep 2007 12:32 GMT
you can use
Range("A1").Interior.ColorIndex = 3
A full list of the colorindex numbers can be found here
http://www.geocities.com/davemcritchie/excel/colors.htm
Mike
> Hi. I'm setting cell background color
>
[quoted text clipped - 4 lines]
>
> Greetings. P.