Macro si on efface une cellule [Résolu/Fermé]
Signaler
skk201
skk201
- Messages postés
- 938
- Date d'inscription
- jeudi 11 septembre 2008
- Statut
- Membre
- Dernière intervention
- 16 octobre 2016
skk201
- Messages postés
- 938
- Date d'inscription
- jeudi 11 septembre 2008
- Statut
- Membre
- Dernière intervention
- 16 octobre 2016
A voir également:
- Macro si on efface une cellule
- Macro si on efface une cellule ✓ - Forum - VB / VBA
- Macro excel effacer contenu cellule - Conseils pratiques - Excel
- Macro VBA qui effacer une plage de cellule ✓ - Forum - VB / VBA
- Macro Effacer Plage Cellules Non Vides ✓ - Forum - Programmation
- Effacer le contenu d'une cellule ✓ - Forum - Excel
1 réponse
skk201
- Messages postés
- 938
- Date d'inscription
- jeudi 11 septembre 2008
- Statut
- Membre
- Dernière intervention
- 16 octobre 2016
Haha Finalament c'est tout bête, ça marchait pas à cause d'une zone de validation.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("B11")) Is Nothing Then
If Cells(11, "B") = "" Then
Cells(11, "B") = "Cheminée"
Else
Application.Run "Marq"
End If
End If
End Sub