Bonjour,
Tu as deux fois la même procédure !
Je t'invite à les fusionner dans la même.
Je l'aurai bien fait pour toi mais je m'etrises pas bien Photoshop !
oui mais je ne sais pas comment les fusionner.
je t'envoie le programme:
Public Sub Worksheet_change(ByVal Target As Range)
Dim rng2 As Range
If Target.Column = 8 Then
If Target.Value = "oui" Then
Set rng2 = Range(Cells(Target.Row, Target.Column + 8), Cells(Target.Row, Target.Column + 8))
rng2.Activate
Do While (IsEmpty(rng2.Value))
MsgBox ("Veuillez renseigner cette cellule")
rng2.Value = InputBox("oui ou non ?")
Loop
End If
End If
End Sub
Public Sub Worksheet_change(ByVal Target As Range)
Dim rng2 As Range
If Target.Column = 16 Then
If Target.Value = "" Then
Set rng2 = Range(Cells(Target.Row, Target.Column + 1), Cells(Target.Row, Target.Column + 1))
rng2.Activate
Do While (IsEmpty(rng2.Value))
MsgBox ("Veuillez renseigner cette cellule")
rng2.Value = InputBox("oui ou non ?")
Loop
End If
End If
End Sub