A family of Microsoft relational database management systems designed for ease of use.
> I have entries in one table that do not tie to the other table
Open the database, and go to the Relationships window. Put both tables on the design surface if they are not there already.
Is there a line between the two, and a 1 and infinity symbol at the ends of the line?
If yes, the database is correctly designed, and data will line up.
If no, you are in trouble, and assuming you cannot do data entry to make them line up, you may have to delete the bad data (e.g. Service records referencing a non-existing Customer).
To find the bad service records, you can run a query along these lines:
select * from Service where Vin not in (select Vin from Customers)