Mar 18, 2002 #1 TCARR Technical User Joined Mar 18, 2002 Messages 2 Location US pricing table and have access only update the prices that have changed? Thanks... Terri
Mar 19, 2002 #2 HowieG Programmer Joined Oct 12, 2001 Messages 64 Location 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;