View Single Post
 
Old 10-08-2014, 09:13 PM
gmayor's Avatar
gmayor gmayor is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,106
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

If you want to insert the symbol with a macro then and format it as 24 point red then

Code:
Sub InsertCheck()
Dim oRng As Range
    Set oRng = Selection.Range
    oRng.InsertSymbol _
            Font:="Wingdings", _
            CharacterNumber:=-3842, _
            Unicode:=True
    oRng.End = oRng.End + 1
    oRng.Font.ColorIndex = wdRed
    oRng.Font.Size = 24
    oRng.Collapse wdCollapseEnd
    oRng.Select
    Selection.Font.Reset
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote