A family of Microsoft relational database management systems designed for ease of use.
Field: 2012 year Result
Table: Quality Metrics
Update To: SET [2012 Year Result] = DLookup("[2012 Year Result]", "Quality Services ", "[2012 Year Result] is Not Null And [Sequence] = " & [Sequence]) WHERE [2012 Year Result] IsNull
Criteria:
You are pasting entire SQL statements into the UPDATE TO and CRITERIA cells in the query grid. That will NOT work.
Try creating a new query based on [Quality Metrics]. Don't add any fields at all. Instead switch to SQL view and copy and paste this text, between the ==== lines, into the SQL window. You can then switch to Query Design view to see how it's set up.
====
UPDATE [Quality Metrics] SET [2012 Year Result] = DLookUp("[2012 Year Result]","[Quality Metrics]", "[2012 Year Result] IS NOT NULL AND [Sequence] = " & [Sequence]) WHERE [2012 Year Result] IS NULL;
====
I'm confused about the table name - you say it's "Quality Metrics" but your query references a different table name, "Quality Services " (with an extra blank which will cause problems). Which is the real table name?