H
HKKS
Hello,
I have combo boxes "cboCustomer1" & "cboCustomer2" that have a list of
customers from a company selected from combo box "cboCompanyName". Only the
customers appear from the selected company. When I select a different company
for "cboCustomer2" related customers appear. However, I would like
"cboCustomer1" to reflect the newly chosen company, which it doesn't - it
does not requery or refresh the list.
How can I get it to do this? I've looked on numerous posts but haven't found
a similar problem. Here is my query if it's helpful.
SELECT Customer.LastName & ", " & Customer.FirstName FROM Customer
WHERE (((Customer.Company)=[Forms]![Customer]![cboCompanyName] And
(Customer.Company)=[Company]));
Thank you in advance for your much needed help.
I have combo boxes "cboCustomer1" & "cboCustomer2" that have a list of
customers from a company selected from combo box "cboCompanyName". Only the
customers appear from the selected company. When I select a different company
for "cboCustomer2" related customers appear. However, I would like
"cboCustomer1" to reflect the newly chosen company, which it doesn't - it
does not requery or refresh the list.
How can I get it to do this? I've looked on numerous posts but haven't found
a similar problem. Here is my query if it's helpful.
SELECT Customer.LastName & ", " & Customer.FirstName FROM Customer
WHERE (((Customer.Company)=[Forms]![Customer]![cboCompanyName] And
(Customer.Company)=[Company]));
Thank you in advance for your much needed help.