VBA Help Programmation

Fermé
mariek888 Messages postés 7 Date d'inscription lundi 2 novembre 2009 Statut Membre Dernière intervention 12 juillet 2010 - 9 nov. 2009 à 13:56
pijaku Messages postés 12263 Date d'inscription jeudi 15 mai 2008 Statut Modérateur Dernière intervention 4 janvier 2024 - 9 nov. 2009 à 15:22
Bonjour,

Je suis nouvelle dans la programmation VBA, et j'aurai d'aide pour me corriger mon mini programme :

Sub test()

For i = 5 To 1000 Step 1
Dim a
Dim b
Dim c

a = Range("I" & i).Value
b = Range("J" & i).Value
c = Range("B2" & i).Value

If a <> "" And b <> "" Then

If a < c And b < c Then
Range("M" & i).Value = 1
End If

If b > c Then
Range("N" & i).Value = 0
End If

If a < c And b > c Then
Range("o" & i).Value = Range("L" & i).Value
End If

End If
Next i
End Sub



Merci à tous de votre aide :)

1 réponse

pijaku Messages postés 12263 Date d'inscription jeudi 15 mai 2008 Statut Modérateur Dernière intervention 4 janvier 2024 2 752
9 nov. 2009 à 15:22
Bonjour,
Qu'est ce qui ne fonctionne pas?
0