I have this code that I used to widen the width of comment boxes that appear as po-ups when the mouse is on them, but I get an error when I run the macro in excel 2002. It says the object does not support this property or function.
Sub COMMENT_TEST()
Range("B4"
.Comment.Text Text:="Michael D:" & Chr(10) & "THIS IS THE TEST COMMENT" & Chr(10) & ""
Selection.ShapeRange.ScaleWidth 1.38, msoFalse, msoScaleFromTopLeft
Range("B4"
.Select
End Sub
The "Selection" line is where I get the error.
Michael
Sub COMMENT_TEST()
Range("B4"

Selection.ShapeRange.ScaleWidth 1.38, msoFalse, msoScaleFromTopLeft
Range("B4"

End Sub
The "Selection" line is where I get the error.
Michael