ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   formatting comments with shared workbook (https://www.excelbanter.com/excel-discussion-misc-queries/206620-formatting-comments-shared-workbook.html)

Joyce D

formatting comments with shared workbook
 
I have a shared workbook with formatted comments (type formated in larger
point size - so easier to read). Every time I save the workbook (shared) and
go back into it the size of the type returns to the smaller point size.

Any thoughts?

Sheeloo[_3_]

formatting comments with shared workbook
 
To fix the proble assign this macro to a button and use it whenever needed.
It will work on comments on the active sheet;

[Adapted from http://www.contextures.com/xlcomments03.html#Format]
Sub ReformatComments()
Dim cmt As Comment
For Each cmt In ActiveSheet.Comments
With cmt.Shape.TextFrame.Characters.Font
.Name = "Arial"
.Size = 14
.Bold = False
.ColorIndex = 5
End With
Next
End Sub
--
Always provide your feedback...


"Joyce D" wrote:

I have a shared workbook with formatted comments (type formated in larger
point size - so easier to read). Every time I save the workbook (shared) and
go back into it the size of the type returns to the smaller point size.

Any thoughts?


Joyce D

formatting comments with shared workbook
 
Great! Thanks!

"Sheeloo" wrote:

To fix the proble assign this macro to a button and use it whenever needed.
It will work on comments on the active sheet;

[Adapted from http://www.contextures.com/xlcomments03.html#Format]
Sub ReformatComments()
Dim cmt As Comment
For Each cmt In ActiveSheet.Comments
With cmt.Shape.TextFrame.Characters.Font
.Name = "Arial"
.Size = 14
.Bold = False
.ColorIndex = 5
End With
Next
End Sub
--
Always provide your feedback...


"Joyce D" wrote:

I have a shared workbook with formatted comments (type formated in larger
point size - so easier to read). Every time I save the workbook (shared) and
go back into it the size of the type returns to the smaller point size.

Any thoughts?



All times are GMT +1. The time now is 10:13 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com