S
Samantha
Hi,
I'm getting a "operation must use an updateable query" error on the
following Update statement:
UPDATE tblBomMult LEFT JOIN qryWIP ON (tblBomMult.WONum = qryWIP.WONumber)
AND (tblBomMult.Component = qryWIP.PartNumber)
SET tblBomMult.QuantityRel = [qryWIP].[QtyRel];
Can anyone tell me why I can't do the above?
However, the following update sql works fine:
UPDATE tblBOM LEFT JOIN [tblBOM-XRef] ON tblBOM.Component =
[tblBOM-XRef].Component
SET tblBOM.PartXReference = [tblBOM-XRef].[PartXReference]
Any pointers to the right direction would be very much appreciatd. Thanks in
advance.
I'm getting a "operation must use an updateable query" error on the
following Update statement:
UPDATE tblBomMult LEFT JOIN qryWIP ON (tblBomMult.WONum = qryWIP.WONumber)
AND (tblBomMult.Component = qryWIP.PartNumber)
SET tblBomMult.QuantityRel = [qryWIP].[QtyRel];
Can anyone tell me why I can't do the above?
However, the following update sql works fine:
UPDATE tblBOM LEFT JOIN [tblBOM-XRef] ON tblBOM.Component =
[tblBOM-XRef].Component
SET tblBOM.PartXReference = [tblBOM-XRef].[PartXReference]
Any pointers to the right direction would be very much appreciatd. Thanks in
advance.