Bonjour,
sans fichier dans lequel tu peux reproduire l'erreur je ne peux pas t'aider.
tu peux mettre ton fichier sur cjoint.com et mettre le lien ici.
voici une version adaptée à ton fichier
Sub test()
i = 3
Application.ScreenUpdating = False
While Cells(i, 1) <> ""
x = Round(Cells(i, 1) - Cells(i - 1, 1), 5)
If x > TimeValue("00:01:00") Then
Rows(i).Insert shift:=xlDown
Cells(i, 1) = Cells(i - 1, 1) + TimeValue("00:01:00")
Cells(i, 3) = 0
End If
i = i + 1
Wend
Application.ScreenUpdating = True
End Sub