Bonjour,
Avec un arrondi ou une troncature ? Si c'est un arrondi alors :
a = 16
b = 16
Do While Cells(a, 11) < Range("F8")
a = a + 1
Loop
Do While Cells(b, 15) < Range("F9")
b = b + 1
Loop
If Cells(a, 11) >= Range("F8") Then
If Cells(b, 15) >= Range("F9") Then
MsgBox "La valeur minimal de profondeur du pieu à l'ELS est de : " & Round(Cells(a, 3), 2) & " m avec " & Round(Cells(a, 11), 2) & " [kN] " & Chr(10) & Chr(13) & _
"La valeur minimal de profondeur du pieu à l'ELU est de : " & Round(Cells(b, 3), 2) & "m avec " & Round(Cells(b, 15), 2) & "[kN]", , "Résultat"
End If
End If
Cdlt,
Edit : Value étant la propriété par défaut des objets range et cells il n'est pas forcément obligatoire de les préciser, même si cela dépend des écoles d'apprentissage.