View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Nick Hodge
 
Posts: n/a
Default Changing the Excel color palette

Don

Does

Sub RGBColour()
Range("A1").Interior.Color = RGB(223, 156, 78)
End Sub

Help?

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
www.nickhodge.co.uk
HIS


"Don McClure" wrote in message
...
I want to be able to set the RGB value for a fill color in a macro. The
color palette does not have the soft pastels I want to use. The problem
stems from the fact that changes to the color palette don't carry over if I
open the worksheet on another computer. So using the ColorIndex(3) doesn't
work. I would like to do something like ColorIndex(3)= RGB(223,156,78).
Any ideas??

Thanks,

Don