You might try giving each employee an ID number (if they aren't already using one) and use that number to link the inventory tables to the employee information.<br>
<br>
Have one table for the equipment, and one table for the employee information, and a table (sometimes called a "junction" table) containing the primary keys of both tables to link them together (based on the assumption that there could be more than one employee to a machine and more than one machine to an employee). This would create a one to many relationship between each of the main tables and the junction table. If you wanted to keep computer and monitor information in separate tables, you could create a table with computer information and one with monitor information, (rather than just an inventory table), and then include each of their keys in the junction table.<br>
<br>
Just a couple of ideas... hope it helps.<br>
M. Chancellor