Auto fill a combo box

G

Guest

I have 2 combo boxes in the Issues Database template on microsoft website.
On the issues form I want to select a value in the Assigned To combo box and
it auto fill the Opened By combo box with the same value as these will always
be the same in my world. Can someone help me?
 
A

Allen Browne

Use the AfterUpdate event procedure of the Assigned To combo to assign the
same value to the Opened By combo.

You may need to alter the names in square brackets, but the code is like
this:

Me.[Opened By] = Me.[Assigned To]
 

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