Restore Default Comment Colour
by
Published on 2006-06-03 07:49 AM
Number of Views: 4379
Restores default yellow colour for all comment on the worksheet. Can easily be modified to change all comments to a different colour by changing the value of the lDefaultCommentColor variable.
Where to place the code:
This code goes in a standard module.
Code required:
Code:
Option Explicit
Private Const lDefaultCommentColor As Long = 14811135
Private Sub RestoreCommentColor(wks As Worksheet)
'Author : Ken Puls (www.excelguru.ca)
'Macro Purpose: To return all comments to the specified color
Dim cl As Range
On Error Resume Next
For Each cl In wks.UsedRange.SpecialCells(xlCellTypeComments)
cl.Comment.Shape.Fill.ForeColor.RGB = lDefaultCommentColor
Next cl
On Error GoTo 0
End Sub
Instructions:
Call the RestoreCommentColor subroutine (passing it a worksheet variable) from within your code, as shown in the examples below:
Code:
Sub RestoreActiveComments()
'Author : Ken Puls (www.excelguru.ca)
'Macro Purpose: Restore the Comment colour for the active sheet
Call RestoreCommentColor(ActiveSheet)
End Sub
Sub RestoreAllComments()
'Author : Ken Puls (www.excelguru.ca)
'Macro Purpose: Restore the Comment colour for the all sheets
Dim wks As Worksheet
For Each wks In ActiveWorkbook.Worksheets
Call RestoreCommentColor(wks)
Next wks
End Sub
NOTE: To find out the Long value for the desired colour, first locate an RGB decimal colour code. (An excellent source for this is
found here.) Enter the following in the immediate window, replacing "0, 255, 0" with your desired colour, and hit Enter:
The resulting number is the Long that you wish to use for your colour constant in the code.
I'm afraid that you must be logged in to comment or leave a testimonial. I wish it could be otherwise, but I'm trying to keep my site spam free for everyone's benefit. If you don't yet have an account it's completely free to sign up, and a very quick process. Simply click here to Register. Not only can you post a comment here, but it gives you full access to posts questions in our forum as well!
If you already have an account, and just haven't logged in yet, what are you waiting for? Login Now!