need to remove part of a string

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

Guest

Need help to find the occurance of 'a' and 'b' in a field (ex 10a and 345b)
and remove.
 
doug s said:
Need help to find the occurance of 'a' and 'b' in a field (ex 10a and
345b) and remove.

If the letters are always at the end, you can probably use the Val
function on the field in an update query.

UPDATE mytable SET myfield = Val(myfield)
 

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