Bonjour avec mon fichier joint je recois l'erreur la méthode range de l'objet _global a échoué. Aidez moi s'il vous plait à régler ce problème meci
mon code
Option Explicit
Sub FifoBooking()
'controle
If Range("i2") <> Empty And Range("i3") <> Empty And Range("l2") <> Empty And Range("l2") <> Empty Then
'cherher sur quelle ligne placer les informations
Dim dl As Long 'variable pour le numero de ligne
If Range("h8") <> Empty Then
dl = 8
Else
dl = Range("h7").End(xlDown).Row + 1
End If
Range("h" & dl) = Range("l2")
Range("i" & dl) = Range("i2")
Range("j" & dl) = Range("i3")
Range("k" & dl) = Range("l3")
End If
End Sub
mon code
Option Explicit
Sub FifoBooking()
'controle
If Range("i2") <> Empty And Range("i3") <> Empty And Range("l2") <> Empty And Range("l2") <> Empty Then
'cherher sur quelle ligne placer les informations
Dim dl As Long 'variable pour le numero de ligne
If Range("h8") <> Empty Then
dl = 8
Else
dl = Range("h7").End(xlDown).Row + 1
End If
Range("h" & dl) = Range("l2")
Range("i" & dl) = Range("i2")
Range("j" & dl) = Range("i3")
Range("k" & dl) = Range("l3")
End If
End Sub