I want to reiterate what orange said. The table structure/relationships is crucial to the success of your dB.
There are some tutorials at Roger Carlson's site that might help.
http://www.rogersaccesslibrary.com/forum/forum46.html
Your description is somewhat confusing. A picture of the relationship window would help.
At this point, it sounds like you (should) have two tables...
One manufacturer can have many types of equipment AND
One type of equipment can be made by many manufacturers.
This is a many to many relationship.
Consider:
Code:
tbl_Manufacturers
ManufacturerID_PK - Autonumber
ManName - Text
ManAddress - Text
ManCity - Text
.... other fields
tbl_Equiptment
EquipID_PK - Autonumber
EquiptType - Text
.... other fields
tbl_EquipManu (junction table)
EquipManuID_PK - Autonumber
ManufacturerID_FK - Long
EquipID_FK - Long
SerialNumber - Text
qry_serial_numbers:
Code:
SELECT tbl_Manufacturers.ManName, tbl_Equiptment.EquiptType, tbl_EquipManu.SerialNumber
FROM tbl_Manufacturers INNER JOIN (tbl_Equiptment INNER JOIN tbl_EquipManu ON tbl_Equiptment.EquipID_PK = tbl_EquipManu.EquipID_FK) ON tbl_Manufacturers.ManufacturerID_PK = tbl_EquipManu.ManufacturerID_FK
ORDER BY tbl_Manufacturers.ManName, tbl_Equiptment.EquiptType;