A
Amy
I have a program that provides a database behind the scenes to generate more
complex queries and reports that the program itself won't allow. I have a
field that is not allowed to be used in a merge which I need to do. I want to
copy the data that is stored in one field to another field that I can use to
merge. Since I can't simply copy and paste the data I am assuming update
query is the only way? Here is the SQL for the update query that is giving me
the must be an updateable error. There is not data in every record. Any
suggestions?
UPDATE tblClients INNER JOIN qryCVPasswords ON tblClients.ID =
qryCVPasswords.ID SET tblClients.AccountingCode = [qryCVPasswords].[PRPwd];
I also tried simply:
UPDATE tblClients
SET tblClients.AccountingCode = PRPwd
And also:
UPDATE tblClients
SET "AccountingCode" = "PRPwd"
I get errors each time.
complex queries and reports that the program itself won't allow. I have a
field that is not allowed to be used in a merge which I need to do. I want to
copy the data that is stored in one field to another field that I can use to
merge. Since I can't simply copy and paste the data I am assuming update
query is the only way? Here is the SQL for the update query that is giving me
the must be an updateable error. There is not data in every record. Any
suggestions?
UPDATE tblClients INNER JOIN qryCVPasswords ON tblClients.ID =
qryCVPasswords.ID SET tblClients.AccountingCode = [qryCVPasswords].[PRPwd];
I also tried simply:
UPDATE tblClients
SET tblClients.AccountingCode = PRPwd
And also:
UPDATE tblClients
SET "AccountingCode" = "PRPwd"
I get errors each time.