Hey
I've got an oval that I would like to colour. I want to change the colour of its fill and border.
I am currently using this code without success:
I was hoping that someone could explain to me why that was.. The code selects the oval as desired, which makes me think that the preceding colouring code is not buggy but that something else is standing in the way..
Any help would be much appreciated.
Kind regards
i_excel
PS I am not sure what .textframe does yet, but it is not the culprit preventing colouring..
I've got an oval that I would like to colour. I want to change the colour of its fill and border.
I am currently using this code without success:
Code:
With ActiveSheet.Shapes("Oval 1")
.Fill.ForeColor.RGB = RGB(217, 0, 217)
.Line.BackColor.RGB = RGB(198, 217, 241)
.TextFrame.Characters.Font.Color = RGB(255, 255, 255)
.Select
I was hoping that someone could explain to me why that was.. The code selects the oval as desired, which makes me think that the preceding colouring code is not buggy but that something else is standing in the way..
Any help would be much appreciated.
Kind regards
i_excel
PS I am not sure what .textframe does yet, but it is not the culprit preventing colouring..
Last edited: