pooterpooter
Technical User
In my update function i have a syntax error but i cannot find the reason.Can you help me?
Public Function UpdateFields()
Dim strSQLC As String
strSQLC = " UPDATE products INNER JOIN [order details] ON products.productid=[order details].productid SET " & _
" , [order details].cartons = products.branch0 "
CurrentDb.Execute strSQLC
End Function
Public Function UpdateFields()
Dim strSQLC As String
strSQLC = " UPDATE products INNER JOIN [order details] ON products.productid=[order details].productid SET " & _
" , [order details].cartons = products.branch0 "
CurrentDb.Execute strSQLC
End Function