Using Access 2007, I have an update that I am trying to build a script or macro or even just a useful chunk of SQL that I can keep and use whenever I want to run the update...
...I have figured out how to this with an update query, but, I don't want to have to spend an hour or so everytime I want to update...
Basically, I am cross walking office symbols for old to new...but all of the old office symbols need to be updated:
This is the SQL view from in access:
UPDATE [Actions Completed - Back UP]
SET [Actions Completed - Back UP].OFC_NEW = [UPDATE TO:]
WHERE ((([Actions Completed - Back UP].OFC) Like [old]));
I used prompts to just run through my list of changes...
THANKS!
yoopersmith