Need help updating records...PLZ HELP ASAP

N

Nadia

I have a list of over 7000 unique numbers (i.e. 123 or 77-
123). I need to add the letters "MH" in front of each
number. Is there an easier way to do this than to click
and edit each individual record manually? Please help,
anyone have any suggestions? Lots of thanks in advance.
 
R

Roger Carlson

Use an Update Query. Assume your table is called Table1 and your field is
Field1, the statement would look like this:

UPDATE Table1 SET Table1.Field1 = "MH" & [field1];

In the query grid, add Table1 as the table, add Field1 in the field grid.
Change the query to an Update Query and add the following "MH" & [field1] to
the Update To: row.
 

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

Top