C
Chuck
Not sure if I am doing this correctly or not. I have a form that has
several combo boxes on it that allow a user to pick a name from a list. I
need to have the next combo box be requeried and not include the selection
from the first box. This has to continue until four boxes have been
selected.
The table, tblDesignators, have the data that is in the combo box. For an
example, it contains the names of people.
The user selects a name from the first combo box that has a query behind it
to select all the names. After the selection, the user moves onto the next
box and selects a new name. I don't want the name from the first selection
to appear in the box. I almost had it by using a query that had something
like this in the criteria of the query:
<>Forms!frmApprovalList!ComboBox1.
This did work for the second combo box.
The third combo box I tried the criteria as
<>Forms!frmApprovalList!ComboBox1 AND <>Forms!frmApprovalList!ComboBox2.
The selection ended up with no records. I tried an OR as well and still no
results.
If someone decides to go back and change names, the first box has to be
requeried and start again.
Make sense?
several combo boxes on it that allow a user to pick a name from a list. I
need to have the next combo box be requeried and not include the selection
from the first box. This has to continue until four boxes have been
selected.
The table, tblDesignators, have the data that is in the combo box. For an
example, it contains the names of people.
The user selects a name from the first combo box that has a query behind it
to select all the names. After the selection, the user moves onto the next
box and selects a new name. I don't want the name from the first selection
to appear in the box. I almost had it by using a query that had something
like this in the criteria of the query:
<>Forms!frmApprovalList!ComboBox1.
This did work for the second combo box.
The third combo box I tried the criteria as
<>Forms!frmApprovalList!ComboBox1 AND <>Forms!frmApprovalList!ComboBox2.
The selection ended up with no records. I tried an OR as well and still no
results.
If someone decides to go back and change names, the first box has to be
requeried and start again.
Make sense?