Hi Jon
I did not go through your video, but it seems that you have repeating fields
(package1, package2, etc, or perhaps PackageReceived, PackageSent, etc), and
this is why you need multiple relationships.
It is actually possible to drag the Client table into the Relationship
window multiple times, and then create a relationship from each one to the
table that has multiple foreign keys. However, a far better solution would
be to create a relational design.
A shipment can contain multiple items. Can we assume that a shipment is
always from one client, to one client? If so you would have a shipment table
with fields:
ShipmentID autonumber
ShipperID
ShippeeID
SentDate
and then a ShipmentDetail table for the packages within the shipment:
ShipmentDetailID autonumber
ShipmentID Number this shipment this row belongs to
and so on. Each item in the shipment is a separate record in this table, so
one shipment contains multiple items.
If the shipments are containers where a shipment can have muliple
consignees, you would move the ShippeeID into the ShipmentDetail table.
Post back if that does not address what you asked.