A
albycindy
I have this message when I try to update information in forms based on
queries that have been created from two or three tables.
I have checked Help and searched this forum but can't really find the
answer. I hav checked all the relationships in my database, adjusted a few
but still can't figure out why this is happening?
The tables I have are (not all information):
tblContacts
*pkCRDNumber (one to many with other tables CRDNumber)
tblClaims
pkLynxClaimReference
*CRDNumber
tblProducts
*pkClaimID (one to one relationship with Returns pkClaimID)
*CRDNumber
tblReturns
*pkClaimID
CRDNumber (no relationship)
I wish I could post a screen thing so you get the picture but the ppl here
who can help probably understand.
Also, if this helps, my query is
SELECT tblClaims.LynxClaimReference, tblProducts.ReplacementOrder,
tblProducts.ReplacementReference, tblClaims.CRDNumber,
tblClaims.ReplacementCon, tblClaims.ConsignmentNumber,
tblClaims.DeliveryDate, tblClaims.Product, tblClaims.LossOrDamage,
tblClaims.DamageDescription, tblClaims.NotificationDate,
tblClaims.ClaimLetterSent, tblClaims.ClaimDate, tblClaims.ClaimAccepted,
tblClaims.AmountPaid, tblClaims.CreditNoteDate, tblClaims.Complete
FROM (tblContacts INNER JOIN tblClaims ON tblContacts.pkCRDNumber =
tblClaims.CRDNumber) INNER JOIN tblProducts ON tblContacts.pkCRDNumber =
tblProducts.CRDNumber
WHERE (((tblClaims.Complete)=No));
Any advice appreciated. Cheers
queries that have been created from two or three tables.
I have checked Help and searched this forum but can't really find the
answer. I hav checked all the relationships in my database, adjusted a few
but still can't figure out why this is happening?
The tables I have are (not all information):
tblContacts
*pkCRDNumber (one to many with other tables CRDNumber)
tblClaims
pkLynxClaimReference
*CRDNumber
tblProducts
*pkClaimID (one to one relationship with Returns pkClaimID)
*CRDNumber
tblReturns
*pkClaimID
CRDNumber (no relationship)
I wish I could post a screen thing so you get the picture but the ppl here
who can help probably understand.
Also, if this helps, my query is
SELECT tblClaims.LynxClaimReference, tblProducts.ReplacementOrder,
tblProducts.ReplacementReference, tblClaims.CRDNumber,
tblClaims.ReplacementCon, tblClaims.ConsignmentNumber,
tblClaims.DeliveryDate, tblClaims.Product, tblClaims.LossOrDamage,
tblClaims.DamageDescription, tblClaims.NotificationDate,
tblClaims.ClaimLetterSent, tblClaims.ClaimDate, tblClaims.ClaimAccepted,
tblClaims.AmountPaid, tblClaims.CreditNoteDate, tblClaims.Complete
FROM (tblContacts INNER JOIN tblClaims ON tblContacts.pkCRDNumber =
tblClaims.CRDNumber) INNER JOIN tblProducts ON tblContacts.pkCRDNumber =
tblProducts.CRDNumber
WHERE (((tblClaims.Complete)=No));
Any advice appreciated. Cheers