dparteka
Member
I have this macro that creates comments... I want to include in the macro to have it set the Object Positioning Properties to >>> Move but don't size with cells
Sub CreateComment()
ActiveCell.AddComment
ActiveCell.Comment.Shape.TextFrame.AutoSize = True
ActiveCell.Comment.Visible = False
ActiveCell.Comment.Text Text:="Employee No.: "
Application.SendKeys "+{F2}"
End Sub
I appreciate any help... thanks
Sub CreateComment()
ActiveCell.AddComment
ActiveCell.Comment.Shape.TextFrame.AutoSize = True
ActiveCell.Comment.Visible = False
ActiveCell.Comment.Text Text:="Employee No.: "
Application.SendKeys "+{F2}"
End Sub
I appreciate any help... thanks