ThrottleWorks
Excel Ninja
Hi,
I am trying to assign comment to a cell. I want to check if comment is already present then leave it else create comment for the cell.
I tried various solutions from Google but somehow not able to do it. Can anyone please help me in this.
I am trying below mentioned code to generate comment.
I am trying to assign comment to a cell. I want to check if comment is already present then leave it else create comment for the cell.
I tried various solutions from Google but somehow not able to do it. Can anyone please help me in this.
I am trying below mentioned code to generate comment.
Code:
PosSht.Cells(TempLr - 1, 13).AddComment
PosSht.Cells(TempLr - 1, 13).Comment.Visible = True
PosSht.Cells(TempLr - 1, 13).Comment.Text Text:="Chandoo is awesome !"
PosSht.Cells(TempLr - 1, 13).Comment.Visible = False