mark hansen
Well-known Member
- Joined
- Mar 6, 2006
- Messages
- 534
- Office Version
-
- 2016
- Platform
-
- Windows
I have a process where I need the user to enter information into a cell, then add a comment. I can add a comment with default text, but the user needs to change the default comments every time.
I use the following to add the comment:
ActiveCell.AddComment
ActiveCell.Comment.Visible = False
ActiveCell.Comment.Text Text:="Default text" & Chr(10) & ""
What I would like to do is, using VBA right click on the Cell and select "Edit comment"
I tried something silly as ActiveCell.Comment.Edit, but of course that doesn't work
Can this be done, or should I settle on the users needing to right click in the cell and select "Edit Comment"?
I use the following to add the comment:
ActiveCell.AddComment
ActiveCell.Comment.Visible = False
ActiveCell.Comment.Text Text:="Default text" & Chr(10) & ""
What I would like to do is, using VBA right click on the Cell and select "Edit comment"
I tried something silly as ActiveCell.Comment.Edit, but of course that doesn't work
Can this be done, or should I settle on the users needing to right click in the cell and select "Edit Comment"?