Can someone tell me why my query is not updatable. I have created a form with this query and would like to update data when need be. All this query does is make a few calculations. thanks
SELECT Client.Company_Name, Product.Product_Name, Delivery.FC_Number, Delivery.Bill_of_Lading_No, Delivery.Location, Delivery.Del_Date_From, Delivery.Del_Date_To, Delivery.Act_Volume, Delivery.Prod_Price, Delivery.Truck_Price_M3, Delivery.Hot_Oil_Price, Delivery.Hourly_Truck, Delivery.Terms, Sum([Delivery].[Truck_Price_M3]+[Delivery].[Tank_Price]+[Delivery].[Prod_Price]+[Delivery].[Hot_Oil_Price]) AS Total_Price, Format(Total_Price*[delivery].[Act_Volume],"Currency") AS Total_Priced_Volume
FROM Product INNER JOIN ((Client INNER JOIN JOB ON Client.Client_ID = JOB.Cient_ID) INNER JOIN Delivery ON JOB.Job_ID = Delivery.Job_ID) ON (Product.[Product _ID] = JOB.Product_ID) AND (Product.[Product _ID] = Delivery.Product_ID)
GROUP BY Client.Company_Name, Product.Product_Name, Delivery.FC_Number, Delivery.Bill_of_Lading_No, Delivery.Location, Delivery.Del_Date_From, Delivery.Del_Date_To, Delivery.Act_Volume, Delivery.Prod_Price, Delivery.Truck_Price_M3, Delivery.Hot_Oil_Price, Delivery.Hourly_Truck, Delivery.Terms;
SELECT Client.Company_Name, Product.Product_Name, Delivery.FC_Number, Delivery.Bill_of_Lading_No, Delivery.Location, Delivery.Del_Date_From, Delivery.Del_Date_To, Delivery.Act_Volume, Delivery.Prod_Price, Delivery.Truck_Price_M3, Delivery.Hot_Oil_Price, Delivery.Hourly_Truck, Delivery.Terms, Sum([Delivery].[Truck_Price_M3]+[Delivery].[Tank_Price]+[Delivery].[Prod_Price]+[Delivery].[Hot_Oil_Price]) AS Total_Price, Format(Total_Price*[delivery].[Act_Volume],"Currency") AS Total_Priced_Volume
FROM Product INNER JOIN ((Client INNER JOIN JOB ON Client.Client_ID = JOB.Cient_ID) INNER JOIN Delivery ON JOB.Job_ID = Delivery.Job_ID) ON (Product.[Product _ID] = JOB.Product_ID) AND (Product.[Product _ID] = Delivery.Product_ID)
GROUP BY Client.Company_Name, Product.Product_Name, Delivery.FC_Number, Delivery.Bill_of_Lading_No, Delivery.Location, Delivery.Del_Date_From, Delivery.Del_Date_To, Delivery.Act_Volume, Delivery.Prod_Price, Delivery.Truck_Price_M3, Delivery.Hot_Oil_Price, Delivery.Hourly_Truck, Delivery.Terms;