Populate multiple fields in a form.

S

Steve

Hi,
Am using Access 2002.
I have a form I use for data entry and tracking. I would like to populate 3
fields when I select the first. Provider, phone, fax. They are in a table
with the same field names.
How can I do this?
Thanks,
Steve
 
K

KLZA

try using the focus event in the Provider field:

try this

Private Sub PROVIDER_GotFocus()
Me.Phone = "555-555-5555"
Me.FAX = "555-555-5555"
End Sub

You can use if statements depending on your provider name in order to
poulate with relative info.
 

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