For ligne = 9 To ActiveSheet.Range("C8").End(xlDown).Row
'@@@@@@ Janvier @@@@@@
'date réception facture/avoir definitive producteur
If ActiveSheet.Range("AB" & ligne).Value = "" Then
dateCalcul = DateSerial(Year("3/01/2011"), Month("3/01/2011") + 1, 0) + 90 'dateCalcul reçoit dernier jour du mois en paramèters + 90j
'msgbox dateCalcul
If dateCalcul < Date Then
ActiveSheet.Range("AB" & ligne).Interior.ColorIndex = 3 'coloration warning
With Cells(ligne, 28).Validation
.Delete
.Add Type:=xlValidateInputOnly, AlertStyle:=xlValidAlertStop, Operator _
:=xlBetween
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = "Attention"
.ErrorTitle = ""
.InputMessage = "Relance ?"
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
Else
End If
End If
Next ligne