Hi, David.
If I understand your question and you want to replace all occurrences of A
with 01, B with 02, C with 03, et ecetera, then one may use an update query
with nested Replace( ) functions. For example, try:
UPDATE tblMyTable
SET Stuff = Replace(Replace(Replace(NZ(Stuff, ""), "A", "01", 1, -1, 2),
"B", "02", 1, -1, 2), "C", "03", 1, -1, 2),
MoreStuff = Replace(Replace(Replace(NZ(MoreStuff, ""), "A", "01", 1, -1,
2), "B", "02", 1, -1, 2), "C", "03", 1, -1, 2);
.. . . where tblMyTable is the name of the table, Stuff is the name of one of
these fields, and MoreStuff is the name of the other field.
HTH.
Gunny
See
http://www.QBuilt.com for all your database needs.
See
http://www.Access.QBuilt.com for Microsoft Access tips.
(Please remove ZERO_SPAM from my reply E-mail address so that a message will
be forwarded to me.)
- - -
If my answer has helped you, please sign in and answer yes to the question
"Did this post answer your question?" at the bottom of the message, which
adds your question and the answers to the database of answers. Remember that
questions answered the quickest are often from those who have a history of
rewarding the contributors who have taken the time to answer questions
correctly.