as there a way to clear a form aa it open. . . .
as there a way to clear a form aa it open. . . .
Did you mean at the open shows empty without data?
Perhaps setting the Data Entry property of the form to Yes does what you want?
yes I mean it.
Private Sub Form_Open(Cancel As Integer)
DoCmd.GoToRecord , , acNewRec
End Sub
Thanks Azhar