How do I Automate changing text to a different text, ie, RW to RMW

  • Thread starter Thread starter RonW
  • Start date Start date
R

RonW

Is is possible to run a query to automate changing text in a field, so that
it will automatically for example change RW to RMW?

Thanks
 
On Fri, 13 Jun 2008 21:47:00 -0700, RonW

One option is to in the <control>AfterUpdate write:
if Me.MyTextfield = "RW" then Me.MyTextfield = "RMW"

If you want this globally, run an Update query:
Update MyTable
set MyField = 'RMW'
where MyField = "RW'

-Tom.
 
Tom: Thanks for your reply. I'm a new Access user and I think I have found
a solution to my concern: I went to Find & Replace and it worked perfectly.
Thanks, RonW
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top