I have a question about normalization which I am going to ask in layman's terms.
Table 1 has data about an "event", and is connected to one of many cities. So Table 1 has a foreign key for city which links to the ID of Table 2. In a query I connect this data by saying Include all records from Table 1 and only those records from Table 2 where the joined fields are equal. (I use criteria I Table1 ID to return I row of data for one record from Table 1.)
I also have Table 3, Table 4a and 4b (I have a query which includes 4a and 4b) and Table 5 which are also event Data as Table 1, but I cannot get it all in Table 1, so I put it in Table 3, Table 4 and Table 5.
How would I link Tables 3,4 and 5 to Table 1in a query so that I could add new records via a form based on the query.