Need to trim text!

M

Mike

Group


I need to trim everything off of the left side of the @ symbol in a list of
e-mail addresses. (e-mail address removed) to *@domain.com.

Thanks
Mike Sund
 
D

DataDay

Try this

right("(e-mail address removed)"
,len("(e-mail address removed)")-instr(1,"(e-mail address removed)","@"))
 
F

fredg

Group

I need to trim everything off of the left side of the @ symbol in a list of
e-mail addresses. (e-mail address removed) to *@domain.com.

Thanks
Mike Sund

Permanently?
Update YourField Set YourField.FieldName =
Mid([FieldName],InStr([FieldName],"@"))

Did you wish to include the asterisk?
If so
="*" & Mid(etc)
 

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