Private Sub Worksheet_Change(ByVal Target As Range)
Application.ScreenUpdating = False
On Error Resume Next
With [Tableau1] 'tableau structuré
.FormatConditions.Delete 'RAZ
.FormatConditions.Add xlExpression, Formula1:="=MOD(" & .Cells(1).Address(0, 1) & ",10)=0" 'pour version anglaise
.FormatConditions.Add xlExpression, Formula1:="=MOD(" & .Cells(1).Address(0, 1) & ";10)=0" 'pour les autres versions
.FormatConditions(1).Interior.ColorIndex = 6 'jaune
End With
End Sub