Uniform Assignment and Inventory

A

Akilez

I am trying to make a uniform inventory and assignment database. The problem
is in trying to get the Shirts.Assignedto field to update when I use the
lookup on the Employee table. I know I missing something obvious.

I have tables for:
Employee
Code Text (PK)
Name Text
Shirt (lookup to Shirts.size)(I want this to display and be able
to display and choose sizes from available shirts in inventory)
.... ...ad nauseum

Shirts
Number Autonumber (PK)
Size Text (lookup to Sizes)
Assignedto Text (lookup to Employee.Code)

Sizes
Size Text (PK)
 
K

Klatuu

You design needs some restrucuring:

Employee
Code Text (PK)
Name Text
ShirtSize Text (lookup to Shirts.size)
ShirtIssued Numeric Long

Shirts
Number Autonumber (PK)
Size Text (lookup to Sizes)
Assigned Y/N

Sizes
Size Text (PK)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top