This is driving me nuts, obviously I am missing something simple.
The following code creates an autoshape circle, and exits without error.
But the autoshape has no text inside it.
However I can enter the exact same line (substituting the correct value for tag) in the immediate window, and "test" shows up inside the autoshape that was created when the function ran.
What am I missing? How do I properly access the .text property of an autoshape in a function?
The following code creates an autoshape circle, and exits without error.
Code:
Public Function drawlabel(tag As String)
Worksheets("sheet4").Shapes.AddShape(msoShapeOval, 100, 100, 40, 40).Name = tag
Worksheets("sheet4").Shapes(tag).TextFrame.Characters.Text = "test"
End Function
But the autoshape has no text inside it.
However I can enter the exact same line (substituting the correct value for tag) in the immediate window, and "test" shows up inside the autoshape that was created when the function ran.
What am I missing? How do I properly access the .text property of an autoshape in a function?