To make all subsequent new records default to last entered
value in a text box, set the text box's DefaultValue
property in the text box's AfterUpdate event:
For a DateTime field:
Me.textbox.DefaultValue = _
Format(Me.textbox, "\#m\/d\/yyyy\#")
For a numeric type field:
Me.textbox.DefaultValue = Me.textbox
For a Text field:
Me.textbox.DefaultValue = """" & Me.textbox & """"