Bonjour,
Ci-joint code VBA pour la première ligne :
Dim Moy() As Single
Dim Meilleur As Single
Sub Calcul_Max()
ReDim Moy(10)
Dim i As Integer
Range("H9").Select
For i = 1 To 9
If ActiveCell >= 2 Then
Moy(i) = ActiveCell.Offset(1, -1)
End If
ActiveCell.Offset(0, 3).Select
Next
Meilleur = Application.Max(Moy())
Range("AT8") = Meilleur
End Sub
Attention, sur les lignes suivantes, le décalage est différent quand il y a le carré gris.
A ta disposition éventuellement.
@+.