A project manager wants your VBA tool to automatically add comments to cells flagging issues so reviewers can see them. Which method adds a comment to a cell in VBA?
-
A
Range("A1").AddComment "Review this value"
-
B
Range("A1").Comment = "Review this value"
-
C
Range("A1").Insert.Comment "Review this value"
-
D
Cells(1,1).NewComment "Review this value"