I have the following to change the comment box size for one cell as follows:
Sub Comments_Formatonecell()
ActiveCell.Comment.Shape.Width = 540
ActiveCell.Comment.Shape.Height = 150
End Sub
Then this to do the same for all cells:
Sub Comments_Format()
Dim cmt As Comment
For Each cmt In ActiveSheet.Comments
cmt.Shape.Width = 800
cmt.Shape.Height = 450
Next cmt
End Sub
Is is possible to do the same for an active range?
Sub Comments_Formatonecell()
ActiveCell.Comment.Shape.Width = 540
ActiveCell.Comment.Shape.Height = 150
End Sub
Then this to do the same for all cells:
Sub Comments_Format()
Dim cmt As Comment
For Each cmt In ActiveSheet.Comments
cmt.Shape.Width = 800
cmt.Shape.Height = 450
Next cmt
End Sub
Is is possible to do the same for an active range?