Concatenated Text as a Hyperlink

B

Bishopsgate3466

Hi,

I wonder if anyone could help me?

I'm trying to create a formula that will create a hyperlink which when
clicked will create an email with a url in the subject line that I will
collect from another part of the spreadhseet, I've started creating the
formula:

=CONCATENATE("mailto:",L2)

On my worksheet L2 is a valid email address, but not even this is working.
How can I convert the concatonated text into a hyperlink?

Can anyone help?
 
D

Dave Peterson

With the email address in A1, the subject in A2 and the body in A3:

=HYPERLINK("Mailto:"&A1&"?subject="&A2&"&body="&A3,"click me")

If you don't have the body of the message, just leave that portion off:
=HYPERLINK("Mailto:"&A1&"?subject="&A2,"click me")

or even:
=HYPERLINK("Mailto:"&A1,"click me")
 

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