A family of Microsoft word processing software products for creating web, email, and print documents.
The following macro uses the color that is listed as Blue in the dropdown color palette. If you use a different color blue, you'll have to change the number 12611584 in the code.
Private Sub CheckBox1_Click()
With ActiveDocument.Content.Find
.ClearFormatting
.Font.Color = 12611584
.Replacement.ClearFormatting
.Replacement.Font.Hidden = True
.Text = ""
.Replacement.Text = ""
.Format = True
.Execute Replace:=wdReplaceAll
End With
End Sub