urbanito1
XLDnaute Occasionnel
bonjour à la communauté,
je copie la macro historique dans mon fichier ( page 051-04 modifiée)
j'ai tjs la même anomalie
problème au niveau du nom util
je ne vois pas d'où vient le souci...
qui peut me dépanner?
grand merci
urbanito1
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Target.Column = 1 Or Target.Column = 3 Or Target.Column = 7 Or Target.Column = 10 Or Target.Column = 12 Or Target.Column = 14 Then
On Error Resume Next ' active la gestion d'erreur
Err = 0
temp = Target.Comment.Text ' Commentaire existe t-il?
If Err <> 0 Then Target.AddComment ' Création commentaire
Target.Comment.Text Text:=Target.Comment.Text & _
Target.Value & " Modifié par:" & NomUtil() & _
" Le " & Now & vbLf
Target.Comment.Visible = True
Target.Comment.Shape.Select
Selection.AutoSize = True
Target.Comment.Visible = False
On Error GoTo 0 ' désactive la gestion d'erreurs
End If
Application.EnableEvents = True
End Sub
je copie la macro historique dans mon fichier ( page 051-04 modifiée)
j'ai tjs la même anomalie
problème au niveau du nom util
je ne vois pas d'où vient le souci...
qui peut me dépanner?
grand merci
urbanito1
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Target.Column = 1 Or Target.Column = 3 Or Target.Column = 7 Or Target.Column = 10 Or Target.Column = 12 Or Target.Column = 14 Then
On Error Resume Next ' active la gestion d'erreur
Err = 0
temp = Target.Comment.Text ' Commentaire existe t-il?
If Err <> 0 Then Target.AddComment ' Création commentaire
Target.Comment.Text Text:=Target.Comment.Text & _
Target.Value & " Modifié par:" & NomUtil() & _
" Le " & Now & vbLf
Target.Comment.Visible = True
Target.Comment.Shape.Select
Selection.AutoSize = True
Target.Comment.Visible = False
On Error GoTo 0 ' désactive la gestion d'erreurs
End If
Application.EnableEvents = True
End Sub