separate field

J

Jennifer

I have a field which contains first and last name. I want to convert it to
an email address.

For example: Bob Jones
I want to have (e-mail address removed)
 
K

kc-mass

Very easy if names are all structured that way - which they are usually not
all that way.

txtEmailName = left(name,instr(name," ")-1 & "." & mid(name,Instr(name, " ")
+1 & "@AOL.COM"

Regards

Kevin
 

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