Access form help.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi,

i am new user to Access and trying to develop the form. I have 1 table with
Code and Description. I have bound the drop down box to code column and would
like to display the description for the code selected. Can you please help me
how I can display this.

Thanks in advance.
Access user.
 
The row source of the combo should include both fields
Select Code, Description From TableName

Now, you have to options to display the Description in another Text box
1. In the control source of the second text box you can write
= [ComboName].Column(1)

2. On the after update event of the combo you can write the code
Me.[TextBoxName] = Me.[ComboName].Column(1)
 

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

Back
Top