Hi,
I'm trying to get a query to update or replace a number within a field/column with MS Access.
I could do this step manually using the find/replace tool, but I would like to make a query or module that will automate this process to save me time in the future.
What I am trying to do is tell the MS Access to find a value within a field/column, find and replace that number.
e.g. I'd like to find all values that are "2" within a field and replace it with "3".
I've tried using the Update function or creating a module to code it but each time I'll get a syntax error or somthing else.
I've tried using:
UPDATE SMT SET SMT.Transit = 10002
WHERE ((SMT.Transit) is 2);
Any thoughts?
I'm trying to get a query to update or replace a number within a field/column with MS Access.
I could do this step manually using the find/replace tool, but I would like to make a query or module that will automate this process to save me time in the future.
What I am trying to do is tell the MS Access to find a value within a field/column, find and replace that number.
e.g. I'd like to find all values that are "2" within a field and replace it with "3".
I've tried using the Update function or creating a module to code it but each time I'll get a syntax error or somthing else.
I've tried using:
UPDATE SMT SET SMT.Transit = 10002
WHERE ((SMT.Transit) is 2);
Any thoughts?