Being a newbie, I am buildig a mileage db and need some help. I have a mileage table that has starting and ending odometer fields. As I enter the records for the entry I want the starting value of start odometer to prefill with the value of the last end odometer record.
Here is the code I tried.
It did not work. Any help is appreciated.
Steve
Here is the code I tried.
Code:
Private Sub EndOdometer_AfterUpdate() If Not IsNull(Me.EndOdometer.Value) Then StartOdometer.DefaultValue = Me.EndOdometer.Value End If End Sub
Steve
Comment