auto fill in

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?
 
D

Duane Hookom

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top