I'm trying to decide which would be better to do - base the forms off of queries or the tables themselves. I have a few many to many relationships, with join tables to make them one to many relationships.
To clarify my earlier question, I'll use an example from my database. I have bibliographic information that users will be entering via data entry forms. I'm trying to make the data entry process as simple as possible, but also trying to keep the tables separate and normalized. I have subforms, combo boxes, etc. in the data entry process. So for one record (containing author name, org name, title of article, publisher, city, etc.) the data is stored in many separate tables. When I go to query the data and I want to look at the bibliographic data, how does access keep the record straight, so that the data that needs to go together, stays together? In other words, so I'm not getting an author from one record mixed up with a city from another record. Does that make sense?