TBL_Brands
.ID
.Brand
TBL_Models
.ID
.Brand (Look up from TBL_Brand)
.Model
TBL_Inventory
.ID
.Brand (Look up from TBL_Brand)
.Model (Look up from TBL_Models)
.Other things to be added like Serial Number, Description, ETC.
***SQL SO FAR ***
SELECT TBL_Models.ID, TBL_Models.Model
FROM TBL_Models
WHERE (((TBL_Models.Brand)=[TBL_Brands].[ID]))
ORDER BY TBL_Models.Model;
The goal was to select the brand first and get a list of models that are part of that brand (IE Cisco - 2800, 7600 ...) but when I click the drop down a pop up asks for an entry. If i put a number it works fine but the result effects all entries.
All of the research I have looked at have people filtering in the form and not the table, is this where I made my mistake?