When I open my form, the Record# field is being populated (which I do not want until the user begins to enter data). If the user decides not to even start the record and closes the form, the record is in the table blank except for the Record#.. This creates many blank records over the course of a week. I just wind up deleting them.
The only code I have regarding the form is in Form_Open :
DoCmd.GoToRecord , , acNewRec
DoCmd.GoToControl “txtDATE_WORKED”
I have this same exact code in other databases, but the Record# field is not populated until they fill in any field on the form.
I