View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Sanjay[_2_] Sanjay[_2_] is offline
external usenet poster
 
Posts: 19
Default Applying Colours

Thanks Peter that's great !

Regards,

"Peter T" <peter_t@discussions wrote in message
...
Add 7 to the colorindex to set the same schemecolor.

eg
.SchemeColor = SelectedColour + 7

Regards,
Peter T

"Sanjay" wrote in message
...
Hi,

I have selected a colour from a cell and would like to use that colour
for

a
shape, however the colour is not the same- am I applying the colour in
the
wrong format?


Retrieving the colour via:

SelectedColour = Range("Time_Colour").Interior.ColorIndex

And applying the color via:

Selection.ShapeRange.Fill.ForeColor.SchemeColor =
SelectedColour
Selection.ShapeRange.Fill.Visible = msoTrue
Selection.ShapeRange.Fill.Solid
Selection.ShapeRange.Line.ForeColor.SchemeColor =
SelectedColour
Selection.ShapeRange.Line.Visible = msoTrue

Thanks!