Hey there folks--
This is rather odd.. I have a normal select query involving 5 tables; here's the SQL:
SELECT MASTERQUOTE.*, Salesperson.*, Customer.*, Part.*, Pricing.*, [nQuantity]*[rSellingPrice] AS Total FROM (((MASTERQUOTE LEFT JOIN Salesperson ON MASTERQUOTE.nSalespersonKey = Salesperson.pkey) LEFT JOIN Customer ON MASTERQUOTE.nCustomerKey = Customer.pkey) LEFT JOIN Part ON MASTERQUOTE.pkey = Part.nQuoteKey) LEFT JOIN Pricing ON Part.pkey = Pricing.nPartKey ORDER BY Salesperson.cInitials, MASTERQUOTE.dQCreate, Customer.cName, Part.cPartDesc, Pricing.nQuantity;
Seems simple enough, but I am not able to change any data in the Query -- not from a form or in datasheet view. I have no idea why.. there are no record locks, read-only flags or anything that should prvent changes to data.. Any thoughts??
Thanks
-- michael~
This is rather odd.. I have a normal select query involving 5 tables; here's the SQL:
SELECT MASTERQUOTE.*, Salesperson.*, Customer.*, Part.*, Pricing.*, [nQuantity]*[rSellingPrice] AS Total FROM (((MASTERQUOTE LEFT JOIN Salesperson ON MASTERQUOTE.nSalespersonKey = Salesperson.pkey) LEFT JOIN Customer ON MASTERQUOTE.nCustomerKey = Customer.pkey) LEFT JOIN Part ON MASTERQUOTE.pkey = Part.nQuoteKey) LEFT JOIN Pricing ON Part.pkey = Pricing.nPartKey ORDER BY Salesperson.cInitials, MASTERQUOTE.dQCreate, Customer.cName, Part.cPartDesc, Pricing.nQuantity;
Seems simple enough, but I am not able to change any data in the Query -- not from a form or in datasheet view. I have no idea why.. there are no record locks, read-only flags or anything that should prvent changes to data.. Any thoughts??
Thanks
-- michael~