Kevin:
There are many ways to do it.
1. Keep the last record in Private variables/array, and
add a procedure to the On Current Form's Event and set
the values to the "NEW" record
2.Store the values in a Private Type structure and the do
the same as above.
3.Use ADO to open add a new record to the table if the
current record is new
4.Bookmark the last record, store it in a variant
varialble set the values to NEW record
There are many other ways (for example:using queries) but
i think this are easier to apply
Note that you have to check if the current record is a
new record, otherwise you will overwrite the contents.
Good luck
Estuardo