Hi all
I am trying to use an update query to update a field in another query. However I am getting an "operation must use an updateable query" error.
After a bit of research, I think this is because I am tryin to update a calculated field.
Is there a way around this? Many thanks
The SQL is just the following
I am trying to use an update query to update a field in another query. However I am getting an "operation must use an updateable query" error.
After a bit of research, I think this is because I am tryin to update a calculated field.
Is there a way around this? Many thanks
The SQL is just the following
Code:
UPDATE [TableA] SET [TableA].Hours = "1"
WHERE ((([TableA].FieldA)=[]));