I only looked at the query that you have in the database that you posted - since that was your question.
The query is not returning any records because there are no matches between the SrsRsItsID fields in the two tables.
What your query is saying [in non-SQL] is:
"Show me rows of data where the 'SrsRsItsID' fields in the two tables match AND where the 'CrTrcks' fields in both Tables match."
Try this:
Create a new query.
Don't select any tables from the Show Table box [just click 'Close'.
In the top left of the Access window - click SQL View.
Paste in this SQL:
Code:
SELECT Owners.OwnrsID, [Series Results].SrsRsltsID, [Series Results].Series, [Series Results].RcWk, [Series Results].Strt, [Series Results].Fnsh, [Series Results].CrTrcks, [Series Results].R, [Series Results].Drivers, [Series Results].Makes, [Series Results].Sponsors, [Series Results].Status
FROM Owners INNER JOIN [Series Results] ON (Owners.CrTrcks = [Series Results].CrTrcks) AND (Owners.Series = [Series Results].Series);
. . . run the query.
Tell me if that is closer to what you need.
I'm basing the above query on this that you said:
Recently I thought of the idea to create an Owners Table whereby I would only need to type in the owner once accoding to the Car# & series.
I'm still not convinced that this is the best way for you to go - but if it gives you what you need . . .