I have the following query :
UPDATE SH_Tourcodes LEFT JOIN Tour ON (SH_Tourcodes.R ECEIPT =
Tour.RECEIPT) AND (SH_Tourcodes.T ILL = Tour.TILL) AND
(SH_Tourcodes.T IME = Tour.TIME) AND (SH_Tourcodes.D ATE = Tour.DATE) SET
Tour.TOURCODE = [SH_Tourcodes]![TOURCODE];
SH_Tourcodes is a query to filter out some records, Tour is a
straightforward table.
When I try and run this I get the message "Operation must use an
updateable query".
I am tearing my hair out - grateful for any assistance.
UPDATE SH_Tourcodes LEFT JOIN Tour ON (SH_Tourcodes.R ECEIPT =
Tour.RECEIPT) AND (SH_Tourcodes.T ILL = Tour.TILL) AND
(SH_Tourcodes.T IME = Tour.TIME) AND (SH_Tourcodes.D ATE = Tour.DATE) SET
Tour.TOURCODE = [SH_Tourcodes]![TOURCODE];
SH_Tourcodes is a query to filter out some records, Tour is a
straightforward table.
When I try and run this I get the message "Operation must use an
updateable query".
I am tearing my hair out - grateful for any assistance.
Comment