Oder ein Häckchen!
z.b.
Vorrausgesetzter Font
Font.Name = "Marlett"
Spalte 3 Zeile 2 bis 4
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
Call Haken(Target.Column, Target.Row)
Application.EnableEvents = True
End Sub
Sub Haken(CA As Long, RA As Long)
If Cells(RA, CA).Column = 3 And Cells(RA, CA).Row > 1 And Cells(RA, CA).Row < 5 Then
If Cells(RA, CA) = Chr$(97) Then
Cells(RA, CA) = ""
Else
Cells(RA, CA).Font.Name = "Marlett"
Cells(RA, CA) = Chr$(97)
End If
End If
Cells(RA, CA - 1).Activate
End Sub