need help with queries to delete numbers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

have table with 3883 records an I need a queries that will delete -4 numbers
to the right of five other number on a field sample 33139-1245
 
It isn't clear if you want to alter the data, or only see the leftmost
portion.

Take a look at the Left() function in Access HELP.

Good luck

Jeff Boyce
<Access MVP>
 
create an update query and write it's update line as left([field];len(
[field])-4) and run query.

I hope it helps you
 
If you are CERTAIN you want to only save the first 5, take a look at Left(),
and, as "tt" suggested, use an update query -- make a backup copy BEFORE you
start!

Good luck

Jeff Boyce
<Access MVP>
 

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

Similar Threads


Back
Top