Hi. Sorry for updating the answer late. I found a solution as soon as I read your reply. I don't know why that happens every time
.Thank you so much for giving me hints all the time.
Below is the code I used.
Code:
On Error Resume Next
With Me.RecordsetClone
.MoveFirst
Do While .EOF = False
.Edit
.Fields("CarID").Value = ""
.Fields("Origination").Value = ""
.Fields("Destination").Value = ""
.Fields("Purpose").Value = ""
.Fields("Total Miles").Value = ""
.Update
.MoveNext
Loop
End With
Application.SetOption "Confirm Action Queries", 0

Originally Posted by
pbaldy
I'm confused. If the form is in data entry mode, it should not show any existing records. Are you sure it's not a default value that's displaying? Can you attach the db here?