see if this gets you closer
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Const WS_RANGE As String = "a1:bu1450" '<=== change to suit
If Target.Count > 1 Then Exit Sub
If Not Target.Offset(, -1).Value Like "[q/Z]" Then Exit Sub
Application.EnableEvents = False
If Not Application.Intersect(Target, Range(WS_RANGE)) Is Nothing Then
With Target
If .Offset(, -1).Value = "q" Then
.Font.Name = "x"
.Value = IIf(.Value = "x", "", "x")
ElseIf .Offset(, -1).Value = "/" Then
.Font.Name = "Wingdings 2"
.Value = IIf(.Value = "t", "", "t")
ElseIf .Offset(, -1).Value = "Z" Then
.Value = IIf(.Value = "Z", "", "FE")
End If
.Offset(0, -1).Activate
End With
End If
Application.EnableEvents = True
End Sub
Bookmarks