Use the Replace function in your Update query:
UPDATE MyTable
SET MyField = Replace([MyField], "some old text", "some new text")
WHERE [MyField] LIKE "*some old text*"
--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
"ndt" <(E-Mail Removed)> wrote in message
news:f34dd9a7-9aaa-4531-ad9e-(E-Mail Removed)...
> Hi,
> This may or may not be an easy problem to solve as I'm relatively just
> average with access.
>
> What I have is a Memo field with html in it. It is a template I use
> for selling items.
>
> What I would like to do is run a query that will replace certain text
> in the memo field using data stored in another access table but leave
> the rest of the text "as is".
>
> Any suggestions or let me know if you need more info...