I am creating an access 2010 database with information about aircraft type information.
I have 4 Combo Boxes;
Aircraft Make
Aircraft Model
Aircraft Variant
Aircraft Feature
I would like to filter the model combo box based on the selection in Manufacturer box, then variant combo box based on selection in the model combo box etc etc....
The code below is what I have currently entered for the 'Aircraft Model' Filtered list...
SELECT tbl_AircraftModel.[Aircraft Model], tbl_AircraftModel.lku_ShortCode
FROM tbl_AircraftModel
WHERE tbl_AircraftModel.lku_ShortCode = tbl_Aircraft.[Make]'
However this just asks me to Enter a parameter value?
Please can somebody point me in the right direction?
tbl_Aircraftis not included in theFROMclause, so Access is puzzled bytbl_Aircraft.[Make]in theWHEREclause. Shouldn't that reference the value selected in one of your other combo boxes (perhapsAircraft Manufacturer)? - HansUptbl_Aircraft.[Make]is the name of a combo box? - HansUptbl_AircraftMake- Luke Smith