Hi there –
Does anyone know how to insert characters in Excel that look exactly like the green checks and red “X”s in the attached chart?
Thanks!
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » Insert Special Characters
You could do it automatically, Clicking in a cell in the Range of A2 to A100 automatically places a green check. Clicking in a cell in the Range of B2 to B100 automatically places a red X. Clicking on it again removes the symbol. Place in a sheet module.
HTH,
Maud
Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Target.Cells.Count > 1 Then Exit Sub If Not Intersect(Target, Range(“A2:A100”)) Is Nothing Then Target.Font.Name = “Marlett” If Target = vbNullString Then Target = “a” Else: Target = vbNullString End If ElseIf Not Intersect(Target, Range(“B2:B100”)) Is Nothing Then Target.Font.Name = “Symbol” If Target = vbNullString Then Target = “C” Else: Target = vbNullString End If End If End Sub
I use the Wingdings characters 251 & 252 in the following macro’s.
Code:Sub XMark()
‘
‘ XMark Macro
‘ Insert X in Wingdings font
‘
‘
ActiveCell.FormulaR1C1 = “û”
With Selection.Font
.Name = “Wingdings”
.Size = 14
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ThemeColor = xlThemeColorLight1
.TintAndShade = 0
.ThemeFont = xlThemeFontNone
End With
With Selection
.HorizontalAlignment = xlCenter
End With
ActiveCell.Offset(0, 1).Select
End Sub
Sub TickMark()
‘
‘ TickMark Macro
‘ Insert Tick in Wingdings Font
‘
‘
ActiveCell.FormulaR1C1 = “ü”
With Selection.Font
.Name = “Wingdings”
.Size = 14
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ThemeColor = xlThemeColorLight1
.TintAndShade = 0
.ThemeFont = xlThemeFontNone
End With
With Selection
.HorizontalAlignment = xlCenter
End With
ActiveCell.Offset(0, 1).Select
End Sub
You can then modify to use the colours you want.
Regards,
Maria
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.
Notifications