auto fill in

  • Thread starter Thread starter DaveB
  • Start date Start date
D

DaveB

Is there a way to use information that I type into one
field be the default in another one; say for instance,
the same address that is in the billing address, billing
city, billing state, be the default in the job address,
Job City, Job State, and automatically fill in that
information when I type it in the first fields? How would
I do that?
 
You can do this with code in a form. For instance in the after update event
of txtBillingCity
If IsNull(Me.txtJobCity) then
Me.txtJobCity = Me.txtBillingCity
End If
 
Back
Top