A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
You can format the range as Marlett, then enter an "a" for a checkmark. You could also use a change event to alter any entry in the range to that.
Private Sub Worksheet_Change(ByVal Target As Range)
' Code goes in the Worksheet specific module
Dim rng As Range
' Set Target Range, i.e. Range("A1, B2, C3"), or Range("A1:B3")
Set rng = Target.Parent.Range("D:D")
' Only look at single cell changes
If Target.Count > 1 Then Exit Sub
' Only look at that range
If Intersect(Target, rng) Is Nothing Then Exit Sub
' Action if Condition(s) are met (do your thing here...)
Application.EnableEvents = False
With Target
.Value = "a"
With .Font
.Name = "Marlett"
.FontStyle = "Bold"
.Size = 14
.Strikethrough = False
.Color = 5287936
End With
.HorizontalAlignment = xlCenter
End With
Application.EnableEvents = True
End Sub
HTH