Removing part of case number

D

DrEvil

Hi,
I have about 22000 cases in database which I would like to reformat. The
case numbers look like this ###-####### , what I would like to do is only
remove first 3 digits after a dash and leave the rest so the format would
look like this ###-#### , the first 3 digits after dash are always zeros (not
sure if that makes any difference). The field is formated as text.
 
R

Rick B

Make an update query and update it to...

Left([SomeFieldName],4) & Right([SomeFieldName],4)
 

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