A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
See:
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Greetings! Is it possible in MS EXCEL 2010 to set up EXCEL comments so the boxes would automatically fit the comment contents.
When I copy and paste material into a comment, often the lower half of the contents will be truncated, so I have to open the comment window and resize it.
This is a problem when the spreadsheet contains a lot of comments. It would be nice to be able to format the comments globally so the size of the window automatically fits the comment data. Is there a way to accomplish this?
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Warning: AutoSize will convert comment to a single line (unless there are line breaks). Will look bad for longer comments.
Thanks, Gary's Student. I forgot to ask: if I run this macro, after I have already inserted some comments, are all the comments, past and future, affected? That is, future comments will autosize?
Give it a try and post back.
Yikes! A scavenger hunt. I guess this is the macro I should use, right?
Sub FitComments() Dim c As Comment For Each c In ActiveSheet.Comments c.Shape.TextFrame.AutoSize = True Next c End Sub