Hello,
I'm trying to create an update query that contains a join to another query. Usually you get the error, "Operation must use an updateable query."
i'm trying to avoid creating a temporary table that contains the contents of the query.
I have the query below, but it is not working as expected:
Any ideas appreciated
I'm trying to create an update query that contains a join to another query. Usually you get the error, "Operation must use an updateable query."
i'm trying to avoid creating a temporary table that contains the contents of the query.
I have the query below, but it is not working as expected:
Code:
DoCmd.RunSQL "UPDATE tblPharmacyCultures SET tblPharmacyCultures.[Finaled] = True WHERE EXISTS(Select * from vPharmacyAccNo_Finaled WHERE vPharmacyAccNo_Finaled.Accession = tblPharmacyCultures.Accession)"
Any ideas appreciated