You want to remove the records from a form, without deleting them from a
table?
You could do that by setting the form's DataEntry property to Yes, or by
opening it in add mode:
DoCmd.OpenForm "Form1", DataMode:=acFormAdd
Another alternative would be to use a filter that evaluates to False for all
records, e.g.:
Me.Filter = "(False)"
Me.FilterOn = True
Or perhaps you just need to move to the new record:
RunCommand acCmdRecordsGoToNew