I have a combo box which is designed to present a subset of the client’s inventory. They pick a category and subcategory then pick from the list. The Row Source is set to:
“SELECT DISTINCT Inventory.[Item Number], Inventory.Description FROM Inventory INNER JOIN tblItemCatSubcat ON Inventory.[Item Number] = tblItemCatSubcat.[Item Number] WHERE [tblItemCatSubcat].[Category] = ‘” & Me![InvCategory] & “‘ AND [tblItemCatSubcat].[Sub Category] = ‘” & Me![InvSubCategory] & “‘ ORDER BY Inventory.[Item Number]”
This exact setup has been working for several years (and continues to) on other forms but on a new one recently created a peculiar thing happens. The length of the displayed list is limited to the number of list rows quite without regard to the substantially larger number of records which the query will return.
If I scratch my head any harder there will be no hair left. Any pointers will be greatly appreciated.