Form

  • Thread starter Thread starter Geo
  • Start date Start date
G

Geo

I'm creating a form to input inventory transactions. I
want to have two fields that once I put the information in
them, they will retain the value once I go to the next
record.
 
Hi,


For new records only? In the after update event of the form, try:

Me.ControlName.DefaultValue = """" & Me.ControlName.Value &
""""


Hoping it may help,
Vanderghast, Access MVP
 
Back
Top