P
Pamela
I have cboVehicleMake on my frmVehicle which is based on tblVehicleType.
tblVehicleType has 3 fields: VehicleTypeID, VehicleMake, VehicleModel.
Because the VehicleMake field has repetitive entries (there are many models
all with the same make), my cboVehicleMake is also having duplicates. Is
there a way to filter this in my SQL further or do I have to create a whole
new tbl for just Makes? Here is my row source for cboVehicleMake:
SELECT tblVehicleType.Make FROM tblVehicleType ORDER BY tblVehicleType.Make;
Thanks so much!!
tblVehicleType has 3 fields: VehicleTypeID, VehicleMake, VehicleModel.
Because the VehicleMake field has repetitive entries (there are many models
all with the same make), my cboVehicleMake is also having duplicates. Is
there a way to filter this in my SQL further or do I have to create a whole
new tbl for just Makes? Here is my row source for cboVehicleMake:
SELECT tblVehicleType.Make FROM tblVehicleType ORDER BY tblVehicleType.Make;
Thanks so much!!