voila mon problème, j'ai une boucle if then else et après le then je voudrais mettre aussi une boucle if then else. Alors voila ce que j'ai fait mais ça ne marche pas. Pourriez vous me dire pourquoi?
If Sheets("Feuil1" ).Cells(8, 1) = ">" Then
If Val(Sheets("Feuil1" ).Cells(7, 2 * k + 8)) > Val(Sheets("Feuil1" ).Cells(9, 1)) Then Sheets("Feuil1" ).Cells(9, (2 * k + 8) - (2 * a + 1)) = Val(Sheets("Feuil1" ).Cells(7, 2 * k + 8)) Else Sheets("Feuil1" ).Cells(9, (2 * k + 8) - (2 * a + 1)) = Val(Sheets("Feuil1" ).Cells(9, 1))
End If
Else: Sheets("Feuil1" ).Cells(9, (2 * k + 8) - (2 * a + 1)) = Val(Sheets("Feuil1" ).Cells(7, 2 * k + 8)) / Val(Sheets("Feuil1" ).Cells(9, 1))
End If
merci
("PS: est ce que c'est correct le = ">" pour savoir si il y a écrit > dans la cellule)