The following code doesn't work, can anyone tell me why and let me know what code would work. The code errors at the line '.TextFrame.Characters.Font.Color = RGB(Colors(0), Colors(1), Colors(2))'
Many thanks.
Many thanks.
VBA Code:
Dim R As Long, G As Long, B As Long, Colors As Variant
Sheet97.Select
Colors = Split(Range("Z93"), ",")
With ActiveSheet.Shapes.Range(Array("TextBoxNeg5.5", "TextBoxNeg3.5"))
.TextEffect.FontSize = Range("W93").Value
.TextFrame.Characters.Font.Color = RGB(Colors(0), Colors(1), Colors(2))
.TextFrame.AutoSize = True
End With