I have the following to standard comment box sizes for a sheet:
Sub Comments_Format()
Dim cmt As Comment
For Each cmt In ActiveSheet.Comments
cmt.Shape.Width = 100
Next cmt
End Sub
is it possible to apply this to just one column?
Thanks!
Steve
Sub Comments_Format()
Dim cmt As Comment
For Each cmt In ActiveSheet.Comments
cmt.Shape.Width = 100
Next cmt
End Sub
is it possible to apply this to just one column?
Thanks!
Steve