Mar 18, 2002 #1 TCARR Technical User Mar 18, 2002 2 US pricing table and have access only update the prices that have changed? Thanks... Terri
Mar 19, 2002 #2 HowieG Programmer Oct 12, 2001 64 CA Try this Update query: Code: UPDATE tblPriceList INNER JOIN tblNewPrices ON tblPriceList.ItemID = tblNewPrices.ItemID SET tblPriceList.Price = tblNewPrices.Price; Upvote 0 Downvote
Try this Update query: Code: UPDATE tblPriceList INNER JOIN tblNewPrices ON tblPriceList.ItemID = tblNewPrices.ItemID SET tblPriceList.Price = tblNewPrices.Price;