j ai ce code , et il me mets toujours Else sans if , comprend pas
With Sheets("Résultats")
For k = 4 To 7500
If .Cells(k, 19) <> "" Then Sheets("Demande").Cells(k, 23).Value = "FINI"
Else
If .Cells(k, 15) <> "" Then Sheets("Demande").Cells(k, 23).Value = "En Vérification"
Else
If .Cells(k, 14) <> "" Then Sheets("Demande").Cells(k, 23).Value = "En cours"
Else
If .Cells(k, 11) <> "" Then Sheets("Demande").Cells(k, 23).Value = "En Attente"
Else Sheets("Demande").Cells(k, 23).Value = ""
End If
End If
End If
End If
Next
End With
With Sheets("Résultats")
For k = 4 To 7500
If .Cells(k, 19) <> "" Then Sheets("Demande").Cells(k, 23).Value = "FINI"
Else
If .Cells(k, 15) <> "" Then Sheets("Demande").Cells(k, 23).Value = "En Vérification"
Else
If .Cells(k, 14) <> "" Then Sheets("Demande").Cells(k, 23).Value = "En cours"
Else
If .Cells(k, 11) <> "" Then Sheets("Demande").Cells(k, 23).Value = "En Attente"
Else Sheets("Demande").Cells(k, 23).Value = ""
End If
End If
End If
End If
Next
End With