Thanks for the response. My problem is that I don't quite know how to link
the tables so that when you choose something it shows stuff from the other
table.
I don't want to list everything in the catalogs, just highlights and things
that teachers routinely search for. I have someone that will input data, I
just need help linking tables - I am not real good at setting the
relationships between tables.
You need to identify the "Entities" - real-life things, persons or
events that you need to manage. In this case I'd guess that there are
only two types of Entities: Items and Catalogs.... right?
Does each Item appear in only one Catalog, or might several catalogs
carry the same item (different brands or models perhaps)? If not (i.e.
if each item appears uniquely in only one catalog), then you just need
two tables:
Catalogs
CatalogID Primary Key <autonumber>
CatalogName
DateOfIssue
<any other info about the catalog as an object you can hold in your
hand>
Items
ItemID Primary Key <autonumber>
CatalogID Long Integer <joined to Catalogs.CatalogID in the
Relationships window>
Description
Price
<anything else you need to know about this item>
You can create a Query joining the two tables, joining CatalogID to
CatalogID; if you put criteria on the Description, or the Price, or
both, and base a Form or Report on this query, you'll get just those
records matching the criteria, with the name of the catalog and the
name of the item displayed.
John W. Vinson[MVP]