E
Evi
My database show the vehicles assigned to staff members
The tables are
TblStaff
----------
StaffID
StaffLastName
TblVehicle
--------------
VehID
Registration
ModelID
TblModel
-------------
ModelID
Model
TblStaffVehicle
--------------------
SVID
StaffID
VehID
The first number in each table is the Autonumber Primary Key. The other ID
keys are linked to their respective tables.
I have already entered the data into TblStaff, TblVehicle and TblModel
I make a query with all the fields in TblStaffVehicle. I add
StaffLastName from TblStaff
Registration & ModelID from TblVehicle
Model from TblModel
If I type a VehID into the Query, the Vehicle Registration shows but the
Model does not.
If I close the query and then reopen it, the Model then appears.
What have I done wrong?
Evi
The tables are
TblStaff
----------
StaffID
StaffLastName
TblVehicle
--------------
VehID
Registration
ModelID
TblModel
-------------
ModelID
Model
TblStaffVehicle
--------------------
SVID
StaffID
VehID
The first number in each table is the Autonumber Primary Key. The other ID
keys are linked to their respective tables.
I have already entered the data into TblStaff, TblVehicle and TblModel
I make a query with all the fields in TblStaffVehicle. I add
StaffLastName from TblStaff
Registration & ModelID from TblVehicle
Model from TblModel
If I type a VehID into the Query, the Vehicle Registration shows but the
Model does not.
If I close the query and then reopen it, the Model then appears.
What have I done wrong?
Evi