Sub Auto_Coche_débit_Compte_Scan_Débits()
'Stop
Sheets("Scan").Visible = True
Sheets("Scan").Select
Sheets("Saisie").Visible = True
Sheets("Saisie").Select
'Attention gérer le nom zone sur les débits à cocher
For Each Cell In Range("zoneD")
'On Error Resume Next
If Cell = "" Then GoTo suite 'On Error GoTo suite
'Range(Selection, Selection.End(xlToLeft)).Select
Range("D1").Select
Range(Selection, Selection.End(xlDown)).Select
'Stop
Set X = Selection.Find(What:=Cell, After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=True) '.Activate
If X Is Nothing Then GoTo suite Else X.Select: If X.Offset(0, -1) = "X" Then TrouveProchain Else X.Offset(0, -1) = "X": Sheets("Scan").Range(Cell.Address).Font.Color = RGB(255, 0, 0): X.Offset(0, 6) = Sheets("scan").Range(Cell.Address).Offset(0, -2): X.Offset(0, -3) = Sheets("scan").Range(Cell.Address).Offset(0, -4)
suite:
'suite2:
Next
'A faire mettre l'intiulé en dernière colonne intitulé OK
'Rajouter ceux qui ne sont pas en rouge automatiquement
'faire idem pour les crédits (l'appellé zoneCR)
End Sub