Does anyone know why I get the error "Operation must use an updateable query" when I run this query.
UPDATE Food_Table SET Food_Table.Delivery_Size = (SELECT Delivery_Size
FROM Delivery_Table
WHERE ((Delivery_Table.Region=Forms.Formulation_Combo.Region_Combo) AND (Delivery_Table.SubRegion=Forms.Formulation_Combo.SubRegion_Combo) AND (Delivery_Table.Segment=Forms.Formulation_Combo.Segment_Combo) AND (Delivery_Table.Sector=Forms.Formulation_Combo.Sector_Combo) AND (Delivery_Table.Product=Forms.Formulation_Combo.Product_Combo)));
When I run only the sub SELECT query portion all is well, but not in the update query.
UPDATE Food_Table SET Food_Table.Delivery_Size = (SELECT Delivery_Size
FROM Delivery_Table
WHERE ((Delivery_Table.Region=Forms.Formulation_Combo.Region_Combo) AND (Delivery_Table.SubRegion=Forms.Formulation_Combo.SubRegion_Combo) AND (Delivery_Table.Segment=Forms.Formulation_Combo.Segment_Combo) AND (Delivery_Table.Sector=Forms.Formulation_Combo.Sector_Combo) AND (Delivery_Table.Product=Forms.Formulation_Combo.Product_Combo)));
When I run only the sub SELECT query portion all is well, but not in the update query.