Thanks Les. Works great until I password protect the worksheet.
The (amended) code below does the job but after every doubleclick although
the tick appears, so does a message saying the cell is protected and
therefore read only.
What a pain! Any ideas?
Private Sub Worksheet_BeforeSingleClick(ByVal Target As Range, Cancel As
Boolean)
ActiveSheet.Unprotect Password:="sulby"
On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Application.Intersect(Target, Columns("B:B")) Is Nothing Then
ActiveCell = "P"
With Selection.Font
.Name = "Wingdings 2"
.Size = 10
End With
End If
ws_exit:
Application.EnableEvents = True
ActiveSheet.Protect Password:="sulby"
End Sub
Thanks