Hi Guy's i am not sure what's going on with me, i know you can't help on that one
but this so simple procedure should be simple to my standards even!!
I am trying to carry over in the example in the image 19.4 from MSNo 4746 to MSNo 4747
So this is changed on StartTime Update
Example of carrying over

StartTime AfterUpdate
Code:
Dim LastNo As Integer, HoursLeft As Variant, myDriver As StringDim myStart As Date, myEnd As Date
myDriver = Me.Driver
If Not IsNull(LastNo = DMax("MSNo", "tblDriverHours", "[Driver] = '" & myDriver & "'")) Then
LastNo = DMax("MSNo", "tblDriverHours", "[Driver] = '" & myDriver & "'") - 1
HoursLeft = DLookup("HoursLeft", "tblDriverHours", "[MSNo] = " & LastNo)
Me.HoursLeft = HoursLeft
End If