Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Not Application.Intersect(Target, Range("l1:l10000")) Is Nothing Then
MsgBox ("Il ne faut pas double cliquer dans cette colonne !" & nbcel)
Cells(ActiveCell.Row, 1).Select
Exit Sub
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal R As Range)
If Not Intersect(R, Range("l1:l10000")) Is Nothing And R.Count = 1 Then
MsgBox ("Bravo vous n'avez cliqué qu'une fois !" & nbcel)
End If
End Sub