UPDATE ShiftType INNER JOIN ((ProductInformation INNER JOIN ((Plant INNER JOIN (([Date] INNER JOIN Downtime ON Date.DateId = Downtime.DateId) INNER JOIN [Order] ON Date.DateId = Order.DateId) ON (Plant.PlantId = Downtime.PlantId) AND (Plant.PlantId = Order.PlantId)) INNER JOIN Product ON (Date.DateId = Product.DateId) AND (Plant.PlantId = Product.PlantId)) ON (ProductInformation.ProductInformationId = Order.ProductInformationId) AND (ProductInformation.ProductInformationId = Product.ProductInformationId)) INNER JOIN Shift ON (Plant.PlantId = Shift.PlantId) AND (Date.DateId = Shift.DateId)) ON (ShiftType.ShiftTypeId = Downtime.ShiftTypeId) AND (ShiftType.ShiftTypeId = Shift.ShiftTypeId) AND (ShiftType.ShiftTypeId = Product.ShiftTypeId) SET Shift.ShiftLengthOPE = [Shift]![TotalShiftLength]-[Downtime]![Lunch/Dinner]-[Downtime]![DevelopmentOrder]-[Downtime]![Meetings], Shift.ShiftLengthTE = [Shift]![TotalShiftLength]-[Downtime]![Lunch/Dinner], Product.PacksProduced = [Product]![CasesProduced]*[ProductInformation]![PacksPerCase], Product.TECalculationp1 = [ProductInformation]![BudgetStaffingLevel]/[Product]![ActualStaffingLevel], Product.SlowRunningCalculationp1 = [Product]![RunSpeed]/[ProductInformation]![MaximumThroughput];
BUT THIS IS COMING UP WITH THE SAME ERROR ON ALL UPDATE QUERYS