I have an Inventory Database with an Items table. It tracks a pretty good number of IT items but only a handful of item types. All items have some common traits (eg Make, Model, Serial #, etc.) but each type of item may have special fields (eg drive size, processor speed for PC's - screen size, display type for monitors, etc.) Each item has a uniqe item number.
What I had planned to do was to keep all the common item information together in the Item table along with a "type" number (1 for computer, 2 for monitor, etc.) and create separate tables for extended information (xType1, xType2). The connection between the ITEM talble the xType tables being the item number field.
My ultimate goal was to have a form that would display the information from both tables when a particular item was selected so that if a computer was the item being displayed its information from both tables would appear and if a monitor was being displayed its information from both tables would appear.
I don't care if blank fields from the non relevant extended type table appear on the form too. (Which I assume to be a given) but I can't seem to get the basic idea to work in any manner through relationships or any other way.
Can somehting like this be done and if so what is the best way to do it?
What I had planned to do was to keep all the common item information together in the Item table along with a "type" number (1 for computer, 2 for monitor, etc.) and create separate tables for extended information (xType1, xType2). The connection between the ITEM talble the xType tables being the item number field.
My ultimate goal was to have a form that would display the information from both tables when a particular item was selected so that if a computer was the item being displayed its information from both tables would appear and if a monitor was being displayed its information from both tables would appear.
I don't care if blank fields from the non relevant extended type table appear on the form too. (Which I assume to be a given) but I can't seem to get the basic idea to work in any manner through relationships or any other way.
Can somehting like this be done and if so what is the best way to do it?