Thanks to all who have responded!
Some clarification for everyone who is helping me:
I have several tables - ContactInfo - EventInfo - FoodandBevCosting (and
several others. As I have setup the tables, 2 or 3 fields exist in each
table - ContactName, EventName, EventDate.
That was your mistake. The ContactName field should exist *ONLY* in the
ContactInfo table; the EventName and EventDate should exist *ONLY* in the
EventInfo table.
Think about it: if a record in the EventInfo table refers to a single event,
which of the 38 ContactName values for the 38 people involved in that event
should go into that record? I don't know if that precise issue pertains, but
it's an example of the way you'll tie yourself in knots with an improper
design.
These fields will be reported and
printed on several different reports. Of course, other fields will be
reported, too.
The Report will be based on a Query joining multiple tables.
I thought that if I entered those fields into my ContactInfo form, that they
would propogate into the other tables to eliminate duplication of data
entry(and potential errors associated with that duplication). I then thought
that a relationship or a query would fill those fields in
(semi)automatically. To date, no such luck.
As I say... the fields simply *should not exist at all*, other than in the
single table to which they pertain. A Contact has a LastName property. An
event, or a FoodBevCosting, *DOESN'T* have a LastName property, and doesn't
need one.
In reality, multiple fields from multiple tables will be used to produce a
variety of reports and documents for internal use, as well as for customer
use.
Of course. But it is not necessary to store all of that information
redundantly in multiple tables in order to include that information on your
report! The Report will be based on a multitable query, pulling the
ContactName from the ContactData table, the EventDate from the EventInfo
table, and so on.
I am still fairly early in the design process and have only been using
sample data to test various fuctionalities. Anything can still be done to
make this what it should be. I am open to any suggestions, and once again,
thanks to everyone for their time and help!
Check the tutorials I posted earlier. Crystal's video and tutorial page would
be a good start.