Hi,
I have the following vba macro to re-position comment boxes on a worksheet but it's having no effect, would anyone have any ideas as to why that could be?
Many thanks,
I have the following vba macro to re-position comment boxes on a worksheet but it's having no effect, would anyone have any ideas as to why that could be?
Many thanks,
VBA Code:
Sub ResetComments()
Dim cmt As Comment
For Each cmt In Sheet1.Comments
cmt.Shape.Top = cmt.Parent.Top + 10
cmt.Shape.Left = _
cmt.Parent.Offset(0, 1).Left + 5
Next
End Sub