Uniform Assignment and Inventory

  • Thread starter Thread starter Akilez
  • Start date Start date
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)
 
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

Similar Threads

Design Question 3
Excel Excel help please 1
Inventory on hand 1
Using IN( ) function in a query 7
Inventory Tables Design 2
Combobox time 3
help with uniforms 1
Product inventory table design 9

Back
Top