comment boxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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
|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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top