E-mail addresses

  • Thread starter Thread starter N1KO
  • Start date Start date
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!
 
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"
 
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"
 
Back
Top