Hi,
to change and update the data of a field in a table with a data which stored in a field in another table, I usually useing updtae query. but this time always the error message make me crazt: "operation must use an updatable query"
the query SQl in like below:
UPDATE [Inventory items], [Find final quantity] SET [Inventory items].[Quantity in Stock] = [expr3]
WHERE ((([Inventory items].[Item Number])=[Forms]![Inventory Review]![Item Number]) AND (([Inventory items].Location)=[Forms]![Inventory Review]![Location]));
where is problem?
or any other sugggestion except update query?
thanks
Ali
to change and update the data of a field in a table with a data which stored in a field in another table, I usually useing updtae query. but this time always the error message make me crazt: "operation must use an updatable query"
the query SQl in like below:
UPDATE [Inventory items], [Find final quantity] SET [Inventory items].[Quantity in Stock] = [expr3]
WHERE ((([Inventory items].[Item Number])=[Forms]![Inventory Review]![Item Number]) AND (([Inventory items].Location)=[Forms]![Inventory Review]![Location]));
where is problem?
or any other sugggestion except update query?
thanks
Ali