Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

fill a field by selecting from a drop down box

Status
Not open for further replies.

Blakeseven

Technical User
Nov 17, 2002
21
US
I have a table with a list of managers and their reps. In a form I have a drop down that allows me to select the rep assigned to the record. What I want to happen is when I select the rep, the manager is loaded into the manager field from the rep table into the assount table.

Thanks forthe help..
 
Hi
If the Row Source of your combo looks like:
[tt]SELECT Rep, Manager FROM tblRepTable[/tt]
Your textbox can have a Control Source that looks like:
[tt]=[cboRepsCombo].Column(1)[/tt]

Or check out Dlookup in the FAQs.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top