Thread: comment boxes
View Single Post
  #2   Report Post  
Jim Rech
 
Posts: n/a
Default

I don't think you can change the default nor change existing comments easily
through the UI. Here's a macro that will do it however:

Sub AllCommentsMoveNoSize()
Dim shp As Shape
For Each shp In ActiveSheet.Shapes
If shp.Type = msoComment Then
shp.Placement = xlMove
End If
Next
End Sub

--
Jim Rech
Excel MVP
"w-domo" wrote in message
...
|I would like to change the default setting for comments. e.g. I want the
| default setting to always be "move but don't size with cells" rather than
| "don't move ...". I can change it for an individual comment, but I cannot
| find a way to apply t to all comments.