Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
Dim Sh As Worksheet, Rng As Range
Set Sh = Me
Set Rng = Target.Range
If Intersect(Range("E2:E" & Rows.Count), Rng) Is Nothing Then Exit Sub
With Sh
.Unprotect
With Rng.Offset(, 3)
.Value = .Value + 1
End With
.Protect
End With
End Sub