View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 10,593
Default RGB for cell interior

Yes it does, and you cannot do what you want to do without changing one of
the standard colours to the colour combination that you want.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Abe" wrote in message
oups.com...
Don, correct me if I am wrong, but doesn't that just take the closest
approximation in excel's active palate to the RGB color?

-Abe

Don Guillett wrote:
Sub rgbcolorinterior()
Range("j6").Interior.Color = RGB(228, 234, 244)
End Sub

--
Don Guillett
SalesAid Software

"Zone" wrote in message
oups.com...
I want to apply an RGB color to a cell interior using VBA. TIA, James