Hello all.
I'm trying to return all address records for a given customer so that the user can select which address they want to use, but they're stored in two different tables. So I'm building a subform populated with a query that has a "Select" button the user can click to return the address info back to the orders form, but am unsure how to populate the popup subform with addresses that are located in two tables. Basically I want to use a SELECT statement to get the Street, City, State, Zip, and Country from the a CustomerAddress table, and a PropertyAddress table where ID (from Customers) = CustID (which is in both tables).
Is this possible? The fields names have the same and type in both tables.