Ilino
XLDnaute Barbatruc
Forum bonsoir
j'ai trouvé ce code
je souhaite l4appliquer sur des cellules fusionnées A8 = (A8:C8)
j'ai trouvé ce code
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Range("A8:A30"), Target) Is Nothing And Target.Count = 1 Then
If Target.Value = "" Then Target.Value = "En cours."
End If
End Sub