I have two tables that are simple lists of Company name and Company Address. Because these are large companies, multiple names can use the same address (e.g. a holding company with many 'Trading as' names).
tblCoName has fields of ID and Long-Name with ID being an autonumber allocated by access
tblCoAddress has field of ID and Address with ID being an autonumber allocated by access
I want to use information from these two tables to create a third table that has a unique name (Site-Name) for a name and address combination
tblCoFunction with fields of Site-Name, Long name, Address
What is the best way to add the Long-Name and Address information.
My current method is to use lookup fields for the Long-Name and Address data such that I can select the name and the address and then manually enter the (made up) site function.
However I have read that using lookup in tables in this way is a bad way to go in access but I'm stumped as to how to do it differently.
Any pointers are appreciated.
tblCoName has fields of ID and Long-Name with ID being an autonumber allocated by access
tblCoAddress has field of ID and Address with ID being an autonumber allocated by access
I want to use information from these two tables to create a third table that has a unique name (Site-Name) for a name and address combination
tblCoFunction with fields of Site-Name, Long name, Address
What is the best way to add the Long-Name and Address information.
My current method is to use lookup fields for the Long-Name and Address data such that I can select the name and the address and then manually enter the (made up) site function.
However I have read that using lookup in tables in this way is a bad way to go in access but I'm stumped as to how to do it differently.
Any pointers are appreciated.