Ambiguous name detected: worksheet_change en VBA excel
Résolu/Fermé
Dianex87
Messages postés
79
Date d'inscription
jeudi 9 mars 2017
Statut
Membre
Dernière intervention
8 août 2017
-
10 mars 2017 à 14:46
Dianex87 Messages postés 79 Date d'inscription jeudi 9 mars 2017 Statut Membre Dernière intervention 8 août 2017 - 14 mars 2017 à 11:14
Dianex87 Messages postés 79 Date d'inscription jeudi 9 mars 2017 Statut Membre Dernière intervention 8 août 2017 - 14 mars 2017 à 11:14
A voir également:
- Ambiguous name detected worksheet_change
- Boot failure detected - Guide
- Cannot find required map name - Forum BIOS
- No keyboard detected - Forum Clavier
- The system has detected that a cooling fan is not operating correctly - Forum Matériel & Système
- Usb device over current status detected ✓ - Forum Matériel & Système
1 réponse
cs_Le Pivert
Messages postés
7904
Date d'inscription
jeudi 13 septembre 2007
Statut
Contributeur
Dernière intervention
14 août 2024
729
10 mars 2017 à 15:38
10 mars 2017 à 15:38
bonjour,
comme ceci:
comme ceci:
Option Explicit Private Sub Worksheet_Change(ByVal Target As Range) Dim changement As Boolean If Target.Rows(1).Cells.Count = Columns.Count Then changement = True If Target.Columns(1).Cells.Count = Rows.Count Then changement = True If changement = True Then Range("B" & Target.Row).Value = Now End If If Target.Row > 2 Then Application.EnableEvents = False Cells(Target.Row, "A").Value = Date Application.EnableEvents = True End If End Sub
14 mars 2017 à 11:14
Cela fonctionne