Tuesday, 17 February 2015
Excel VBA adding a comment to a cell
Code below can be used to add comments to a cell. I find this useful for providing errors and feedback to the end user.
Dim o_Range As Range
Set o_Range = Sheet1.Range("A1)
o_Range.ClearComments
o_Range.AddComment "Test Comment"
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)