I have two tables: LookupTbl_Rates and Tbl_Vehicle_Data
LookupTbl_Rates
LK_Rate_ID LK_Tag LK_Monthly_Rate LK_Mileage_Rate LK_OE_Monthly LK_OE_Mileage
Tbl_Vehicle_Data
VehicleID TAG (plus other fields)
What I am trying to do is get the results in a query
VehicleID LK_Tag, LK_Monthly_Rate, LK_Mileage_Rate, LK_OE_Monthly, LK_OE_Mileage
I have the relationship between TAG and LK_Tag set.
The query I created will give the VehicleID or the LK values but not both.
I think I'm making it to complicated. Any help is appreciated.