I am working on a configuration database, part of which is associations of Builds.
I have a listbox which has the BuildID and AssociatedID.
The AssociatedID field is my way using a single field to store ID's from diferent types of items (Documents, Forms, Dwg's). The problem is that the ID's are all Autonumber, so I could end up with multiple "22" 's as an ID, one for Document, and one for Form. To avoid this, I could include the Form and Document Numbers into the table, but that breaks Normalization.
I may be able to make the Document and Form numbers the ID fields, but I am trying to avoid that.
The combined field is an experimental work-around to avoid multiple tables storing Build info for each type (tblBuildForm etc..).
Anyone thinking of a better way as they are reading this?
Thanks. Sean.
I have a listbox which has the BuildID and AssociatedID.
The AssociatedID field is my way using a single field to store ID's from diferent types of items (Documents, Forms, Dwg's). The problem is that the ID's are all Autonumber, so I could end up with multiple "22" 's as an ID, one for Document, and one for Form. To avoid this, I could include the Form and Document Numbers into the table, but that breaks Normalization.
I may be able to make the Document and Form numbers the ID fields, but I am trying to avoid that.
The combined field is an experimental work-around to avoid multiple tables storing Build info for each type (tblBuildForm etc..).
Anyone thinking of a better way as they are reading this?
Thanks. Sean.