D
dlw
getting missing operator on this:
UPDATE CPcosts INNER JOIN [INMAST-test] ON [CPcosts].stockno =
[INMAST-test].stockno
SET [INMAST-test].sellprice = [CPcosts]![price]
SET [INMAST-test].calcsellprice = [CPcosts]![price]
SET [INMAST-test].currentcost = [CPcosts]![cost]
SET [INMAST-test].totalcost = [CPcosts]![cost] * [INMAST-test].onhand;
Can I do multiple SETs like that?
Thank you for you help.
UPDATE CPcosts INNER JOIN [INMAST-test] ON [CPcosts].stockno =
[INMAST-test].stockno
SET [INMAST-test].sellprice = [CPcosts]![price]
SET [INMAST-test].calcsellprice = [CPcosts]![price]
SET [INMAST-test].currentcost = [CPcosts]![cost]
SET [INMAST-test].totalcost = [CPcosts]![cost] * [INMAST-test].onhand;
Can I do multiple SETs like that?
Thank you for you help.