Converting Text to a hyperlink

  • Thread starter Thread starter Darin Kramer
  • Start date Start date
D

Darin Kramer

Howdie

Column A I have a list of names
Column K I have a corresponding list of email addresses (these are
Hyperlinks with a mail to command within the hyperlink)
Thus for eg
A1 = John Smith
K1 = (e-mail address removed)

Now I want to create a new column say L which would say John Smith in it
(but would have the hyperlink of (e-mail address removed)) as its neater just
to see the name and be able to click on it rather than the full
address...

I need to do it for all data in the columns....

Appreciate any assistance!

Regards

D
 
What you want is both very easy and very useful:

=HYPERLINK("mailto:" & K1,A1)

entered in L1
 
But.... when I copy and paste values(as I'd like to move that cell to
another book), Excel forgets that it is a hyperlink - ie clicking it no
longer launches email...

Ideas...?

Regards

D
 
If you copy a hyperlink and then paste/special/value somewhere else, the copy
will be "cold" (un-clickable). To make the hyperlink "hot" just select the
cell, touch F2, then touch ENTER.
 
Back
Top