It may be the workaround that you need. It is hared to say since we don't
know what type of query Locator Filter 131 is and if it is updatable. If
you run the query Locator Filter 131 by itself can you update records or add
records. If not then you can't use it in an update query. You might be
able to use the DLookup function or one of the other VBA aggregate
functions.
Assuming Item is a text field then you should be able to use the following
to update the Title feld.
UPDATE ELEM_SCHEM
SET ELEM_SCHEM.TITLE =
DLookup("Title","[LOCATOR FIlter 131]", "Item = """ & [Item] & """")
If there are a large number of records to update then this may be too slow.
In that case, you may have to use the temp table method to get satisfactory
performance.
--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
..