Form field not returning same info as query info it's based on

D

denilynn

I have a combobox field in a form that's based on a field
in a query, which obviously is pulled from a table. I then
have associated (textbox) fields in the form automatically
fill in based on the choice made in the combobox field. My
problem is that the query returns a client name (for
instance), but the textbox field in the form is returning
the client ID. Same case with Analyst ID being returned
as opposed to Analyst's Initials in the form. Thanks in
advance for your help!
 
R

Rodrigo

You need to change the Bound property on you combo box to the column with
the initials/client name/etc. It's probably in 1 right know and 1 is the
first column on the query which is usually the primary key.


Rodrigo.
 
D

denilynn

This still doesn't work. Do I base these combo boxes on
the column locations in the query, or on the columns in
the tables the query pulls them from?
 
R

Rodrigo

The query. They are 1 based (from left to right).
denilynn said:
This still doesn't work. Do I base these combo boxes on
the column locations in the query, or on the columns in
the tables the query pulls them from?
 

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