D
DavidES
The following update query works fine:
UPDATE WebPrice SET WebPrice.InvClass = "COUNT"
WHERE (((WebPrice.InvClass)<>"PART"));
When I add a pass-through query to select criteria, the query is no longer
updateable as in:
UPDATE WebPrice INNER JOIN InvCountPTsql ON WebPrice.Number =
InvCountPTsql.NUMBER SET WebPrice.InvClass = IIf("DISCONT"=Yes,"DISC","COUNT")
WHERE (((WebPrice.InvClass)<>"PART"));
I know that pass through queries are not updateable but I need to use the
information to update my local access table. Can someone either tell me what
I am doing wrong or tell me what I need to do to accomplish my task?
UPDATE WebPrice SET WebPrice.InvClass = "COUNT"
WHERE (((WebPrice.InvClass)<>"PART"));
When I add a pass-through query to select criteria, the query is no longer
updateable as in:
UPDATE WebPrice INNER JOIN InvCountPTsql ON WebPrice.Number =
InvCountPTsql.NUMBER SET WebPrice.InvClass = IIf("DISCONT"=Yes,"DISC","COUNT")
WHERE (((WebPrice.InvClass)<>"PART"));
I know that pass through queries are not updateable but I need to use the
information to update my local access table. Can someone either tell me what
I am doing wrong or tell me what I need to do to accomplish my task?