Dear ClulessChris,
You have to the sql statement joining the tables. Here's an example.
SELECT tbl_Volunteers.Prefix, tbl_Volunteers.LNAME, tbl_Volunteers.FNAME, tbl_Volunteers.Suffix, Table1.Address
FROM tbl_Volunteers INNER JOIN Table1 ON tbl_Volunteers.VolunteerID = Table1.VolID;