How can I limit a COMBO BOX's selections based on a previous form entry

G

Gurtz

If I understand you right, you are populating a combo box
(say, cbox2) using a query that reads a value from another
combo box (say, cbox1).

You can do this in the RowSource property of cbox2. Here's
an example:

SELECT table.col1, table.col2, etc FROM table WHERE
((table.col1=[CBox1]);

It should be that easy. If I misinterpreted your problem,
reply back and I (or somebody else) will help you out.

Gurtz
[email = no $]
 

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