Allen's advice is very good and absolutely correct.
IF for some reason, you have to work with the current data you can use a
UNION query to combine all the data into one query. Union queries can only
be built in the SQL view. The query would look something like the following
SELECT [Exihibator ID], "Steer" as TheClass, [Entry Number], [Placing in
Class]
FROM [Table Steers]
UNION ALL
SELECT [Exihibator ID], "Swine" as TheClass, [Entry Number], [Placing in
Class]
FROM [Table Swine]
UNION ALL
SELECT [Exihibator ID], "Sheep" as TheClass, [Entry Number], [Placing in
Class]
FROM [Table Sheep]
Once you have that built, you can save it and then build a new query using
the union query and the Exhibator table.

Signature
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
.
> You have totally comfirmed what I had thought about how this "should" have
> been set up. I am working with a file that has been used this way for a
[quoted text clipped - 4 lines]
> have
> been a better way to set it up. Which means I am learning. Cheers!
>> > Ok here it goes bare with me.
>> > I have a 4 tables
[quoted text clipped - 28 lines]
>> > any
>> > direction. VERY BEGINNER I KNOW.