Rik_StHelens
Registered User.
- Local time
- Today, 04:47
- Joined
- Sep 15, 2009
- Messages
- 164
Hi all,
I am trying to execute a query to update a table with pricing values calculated in a seperate select query.
This comes back with an error messahe of "Operations must use an update query". I have checked that the database and linked data files are not in read only folders, but still get the same message.
Code is as follows:
Can anyone help on this please, as its driving me nuts!
Thanks in advance.
Richard
I am trying to execute a query to update a table with pricing values calculated in a seperate select query.
This comes back with an error messahe of "Operations must use an update query". I have checked that the database and linked data files are not in read only folders, but still get the same message.
Code is as follows:
Code:
UPDATE 150_Pricing_Report, GardnersFile SET GardnersFile.PriceOnAmazonUK = [150_Pricing_Report].[Amazon_Sellprice], GardnersFile.PriceOneBayUK = [150_Pricing_Report].[Ebay_Sellprice], GardnersFile.PriceOnPlaycom = [150_Pricing_Report].[Play_Sellprice];
Can anyone help on this please, as its driving me nuts!
Thanks in advance.
Richard