tiredofit
Well-known Member
- Joined
- Apr 11, 2013
- Messages
- 1,924
- Office Version
- 365
- 2019
- Platform
- Windows
This colours in a shape:
I want to find the colour of this shape but why doesn't this work?
Thanks
Code:
ActiveSheet.Shapes.Range(Array("Colour Title")).Select
With Selection.ShapeRange.Fill
.Visible = msoTrue
.ForeColor.RGB = RGB(255, 255, 0)
.Transparency = 0
.Solid
End With
I want to find the colour of this shape but why doesn't this work?
Code:
Dim FindColour
FindColour = ActiveSheet.Shapes.Range(Array("Colour Title")).ShapeRange.Fill.ForeColor.RGB
Thanks
Last edited: