Or with a event macro. Right click the sheet name e.g sheet1. Select view code and paste in the below. The range is set as A1 to A100 but change as required.
Now as soon as you select a cell in that range it inserts a tick. to untick just reselect the cell
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
Target.Font.Name = "Marlett"
If Target = vbNullString Then
Target = "a"
Else
Target = vbNullString
End If
End If
End Sub
VBA Noob
Bookmarks