E-mail addresses

N

N1KO

Hi,

I need to convert a load of numbers into e-mail addresses, below are a
couple of examples. There are about 2000 numbers ranging from 3 digits to 6
digits however i need them all to show 6 digits so i need 0's infront of the
smaller numbers (E.g. 000752), I can convert the numbers to 6 digits but when
copied into the e-mail address they come out as what they were before the 0's
added(E.g (e-mail address removed) instead of (e-mail address removed))

752
5894
7277

basically i need them to be e-mail addresses in the format (e-mail address removed)

They have to equal 6 digits before the @ symbol so if the number is 752 it
needs to be (e-mail address removed)

I can get it with out the 0's infront so it'll equal (e-mail address removed) but not
with the 0's!

Any help would be appreciated!
 
R

Rick Rothstein

Try creating your email addresses using this formula...

=TEXT(A1,"000000")&"@"&"xxx.com"

Of course, if the "xxx" part is coming from another cell, do it this way...

=TEXT(A1,"000000")&"@"&B1&".com"
 
N

N1KO

Thank you, thank you!

Rick Rothstein said:
Try creating your email addresses using this formula...

=TEXT(A1,"000000")&"@"&"xxx.com"

Of course, if the "xxx" part is coming from another cell, do it this way...

=TEXT(A1,"000000")&"@"&B1&".com"
 

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