add email address to a list of names

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

Guest

I have a list of names, 1st column has last name, 2nd column has first name
and I know what the email address would be for each person: example would be
like (e-mail address removed). How do I add a column that would be a email
address of each of the different people
 
Hi biochemist

Try this formula

=HYPERLINK("mailto:" & A1 & B1&"@something.com")
 
I guess I was not very clear I need to do this to a whole series of cell:
example would be like Cell A1 Smith, Cell B1 John, and then in cell a2 Brown
cell b2 Peter etc… and what I want is to be able to do this from say a1 to
a1054 and b1 to b1054 and in cell c1 to c1054 have the read
(e-mail address removed) and cell c2 (e-mail address removed), they would
all have the same .somewhere.com. I hope I was more clear here than in the
last time.
 
Just copy Ron's formula down Column C as far as you wish(1054 rows?)

OR double-click on the fill handle(square lump on bottom right corner of C1)
to fill down if data is contiguous in column B.


Gord Dibben Excel MVP
 
Super, thanks but how do you get the underscore to appear betwenn first and
last name with no space?
 
Assuming you have no spaces in A1 and B1.........

=HYPERLINK("mailto:" & A1 & "_" & B1 & "@something.com")


Gord
 

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