I have a three table structure with this setup
tblPolicy
PolicyID
Policy#
tblEndorsement
EndorsementID
Endorsement#
PolicyID
tblTransaction
TransactionID
TransactionDetails
EndorsementID
PolicyID
Some of the EndorsementIDs in tblTransaction refer to the first Endorsement# in their policy and I need to have somebody check them and change where necessary
I have an unbound main form with PolicyID and Policy#
The bound subform needs to have a Combo box displaying the Endorsement# from tblEndorsement corresponding to the EndorsementID in tblTransaction and displaying all of the Endorsement# possibilities from tblEndorsement for that PolicyID and that PolicyID only so it can update the correct EndorsementID
and once the user chooses the EndorsementID foreign key needs to update
I can't seem to figure this out, any help would be appreciated
tblPolicy
PolicyID
Policy#
tblEndorsement
EndorsementID
Endorsement#
PolicyID
tblTransaction
TransactionID
TransactionDetails
EndorsementID
PolicyID
Some of the EndorsementIDs in tblTransaction refer to the first Endorsement# in their policy and I need to have somebody check them and change where necessary
I have an unbound main form with PolicyID and Policy#
The bound subform needs to have a Combo box displaying the Endorsement# from tblEndorsement corresponding to the EndorsementID in tblTransaction and displaying all of the Endorsement# possibilities from tblEndorsement for that PolicyID and that PolicyID only so it can update the correct EndorsementID
and once the user chooses the EndorsementID foreign key needs to update
I can't seem to figure this out, any help would be appreciated