I have a database where I have been attempting to relate cases with Attorneys and Insurance Information.
Right now I have four tables:
tblCaseInfo
-txtCaseName - primary key
-txtClientAndFileInfo
-other text and memo fields
tblAttorneyInfo
-txtAssignedAttorneyName - primary key
-txtAttorneyInitials
-other text fields
tblInsuranceInfo
-txtInsCoRepName - primary key
-txtInsCoName
-other text and memo fields
tblCase
-txtCaseName - one to many relationship w/ tblCaseInfo
-txtAssignedAttorneyName - one to many relationship w/ tblAttorneyInfo
-txtInsCoRepName - one to many relationship w/ tblInsuranceInfo
I have a form based on the tblCaseInfo with subforms based on tblInsuranceInfo and tblAttorneyInfo respectively. I am relating the tables together utilizing the tblCase.
The form with their associated subforms work absolutely great! However, the results that I am getting into the tblCase is that I have a record or two with the txtCaseName and associated txtAssignedAttorneyName with blank information for txtInsCoRepName. I then have a separate record for txtCaseName, blank txtAssignedAttorneyName and appropriate information for txtInsCoRepName.
Would you have any suggestions for populating the tblCase and maintaining appropriate Normalization rules?
Thank you in advance for your valuable assistance. Tek-Tips is invaluable for someone who needs another perspective on an opportunity.
DLC
Right now I have four tables:
tblCaseInfo
-txtCaseName - primary key
-txtClientAndFileInfo
-other text and memo fields
tblAttorneyInfo
-txtAssignedAttorneyName - primary key
-txtAttorneyInitials
-other text fields
tblInsuranceInfo
-txtInsCoRepName - primary key
-txtInsCoName
-other text and memo fields
tblCase
-txtCaseName - one to many relationship w/ tblCaseInfo
-txtAssignedAttorneyName - one to many relationship w/ tblAttorneyInfo
-txtInsCoRepName - one to many relationship w/ tblInsuranceInfo
I have a form based on the tblCaseInfo with subforms based on tblInsuranceInfo and tblAttorneyInfo respectively. I am relating the tables together utilizing the tblCase.
The form with their associated subforms work absolutely great! However, the results that I am getting into the tblCase is that I have a record or two with the txtCaseName and associated txtAssignedAttorneyName with blank information for txtInsCoRepName. I then have a separate record for txtCaseName, blank txtAssignedAttorneyName and appropriate information for txtInsCoRepName.
Would you have any suggestions for populating the tblCase and maintaining appropriate Normalization rules?
Thank you in advance for your valuable assistance. Tek-Tips is invaluable for someone who needs another perspective on an opportunity.
DLC