My system is designed by Access 2013. I setup a query to get data from SQL Server 2014 by ODBC connection. The connection does not have problem. I can open query1 to see all records. Query1 is complicated and join couple tables together. I want to use the query records to update local table. The error message is:
Run-time error '3073'
Operation must use updateable query.
str = "UPDATE table1 INNER JOIN query1 AS A ON Table1.Item = A.Item SET Table1.Qty = A.Qty"
DoCmd.RunSQL str