As
June7 said, you can use the
AfterUpdate event of the
Control holding your
data to set the
DefaultValue for the
Field. From that time forward, until you either
manually change the data or
close your form, the data will be entered automatically in each
New Record.
The
syntax for each
Datatype is slightly different, or you can use this syntax
Code:
Private Sub YourControlName_AfterUpdate()
Me.YourControlName.DefaultValue = """" & Me.YourControlName.Value & """"
End Sub
which is valid for
Text,
Number and
Date Datatypes. Never tried it on a
Yes/No Field!