I have an unbound combo box that I populate using the following query:
SELECT Customers.PartnerID, Customers.CustName FROM Customers WHERE (((Customers.PartnerID)=[Forms]![Partners-Detail]![Master_ID])) ORDER BY Customers.CustName;
I get the correct values displayed when I hit the drop down arrow. The problem I have is that when I choose any of the values the one that actually shows up as selected is always the first item in the list.
Any thoughts at what I'm doing wrong?
KMS
SELECT Customers.PartnerID, Customers.CustName FROM Customers WHERE (((Customers.PartnerID)=[Forms]![Partners-Detail]![Master_ID])) ORDER BY Customers.CustName;
I get the correct values displayed when I hit the drop down arrow. The problem I have is that when I choose any of the values the one that actually shows up as selected is always the first item in the list.
Any thoughts at what I'm doing wrong?
KMS