HOW DO YOU SET A DEFAULT VALUE THAT REPEATS THE PREVIOUS RECORD (TEXT) IN THE
SAME FIELD?
Please lay off the CAPS LOCK key. It's hard to read and looks like
you're SHOUTING AT US.
You cannot do this in a Table, but you should be using a Form to enter
data in any case. On a Form, you can use just one line of VBA code; in
a textbox (or other control's) AfterUpdate event, put
Private Sub controlname_AfterUpdate()
Me!controlname.DefaultValue = """" & Me.controlname & """"
End Sub
The """" is needed to insert a single " character to delimit the
default value string.
John W. Vinson[MVP]