Private Sub Worksheet_SelectionChange(ByVal R As Range)
Application.EnableEvents = False
Application.ScreenUpdating = False
Range(Cells(1, 14), Cells(1, 1)).Select
ActiveWindow.Zoom = True 'ActiveWindow.Zoom = 114
If Not Intersect(R, Range("b4:b30")) Is Nothing Then
R.Copy
[a1].Select
Sheets("Appels").Select
' Modif transfert automatique
If R <> "" Then
ActiveCell.Offset(0, 1) = Format(Now, "dd-mm-yy hh:mm") & " : " & R & " - " & Chr(10) & ActiveCell.Offset(0, 1).Value
End If
End If
Application.EnableEvents = True
Application.ScreenUpdating = True
End Sub