A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Populate multiple fields in a form.



 
 
Thread Tools Display Modes
  #1  
Old June 19th, 2008, 09:08 PM posted to microsoft.public.access.forms
Steve
external usenet poster
 
Posts: 2,662
Default Populate multiple fields in a form.

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

  #2  
Old June 19th, 2008, 09:46 PM posted to microsoft.public.access.forms
KLZA
external usenet poster
 
Posts: 47
Default Populate multiple fields in a form.

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.

Steve wrote:
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

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:37 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.