remove periods

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

Guest

I have a field that contains information to extract.

i.e." billing change $12.16." I want to only extract 12.16
 
If the data ALWAYS has a period on the end and a $ sign in it then use this --
Left(Mid([YourFieldName], InStr([YourFieldName], "$"), 254),
Len(Mid([YourFieldName], InStr([YourFieldName], "$"), 254))-1)
 

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