Value Query

  • Thread starter Thread starter Kathy
  • Start date Start date
K

Kathy

I have one table with a list of MANAGERS where the
primary key is an AutoNo. I want to write a query that
will change the AutoNo to the MANAGERNAME in my form.
 
I have one table with a list of MANAGERS where the
primary key is an AutoNo. I want to write a query that
will change the AutoNo to the MANAGERNAME in my form.

A couple of ways to do this:

Base the Form on a query joining whatever table it's now based on to
MANAGERS, joining the ManagerID to the MANAGERS primary key. Select
the manager name from the MANAGERS table as the control source of the
textbox.

Or, use the toolbox Combo Box wizard to create a combo box bound to
the managerID but displaying the manager name.
 

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