formula for mailto + cc

keinz

New Member
Joined
Dec 2, 2015
Messages
44
hi everyone,

trying to get this formula to work properly

at the moment i have this formula - that pretty much hyperlinks a cell to open up outlook to email to cell A2 and cc cell a3
=HYPERLINK("mailto:"&A2&"?cc="&A3, "NAME" )

Issue I am having is that I'd like to be able to display "NAME" as whatever info is in B1
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Huh? Am I missing something?

Code:
=HYPERLINK("mailto:"&A2&"?cc="&A3, B1 )

you didn't for some reason i was overthinking it..

now im having the issue of trying to CC in multiple people

current formula is:
=HYPERLINK("mailto:"&I50&"?CC="&Q50, P50)

so i tried
=HYPERLINK("mailto:"&I50&"?CC="&Q50,&T50, P50)

but its combining both emails together without a space so outlook isn't recognizing it

any inputs?
 
Upvote 0
You need to add the ';'

Code:
=HYPERLINK("mailto:"&B10&"?cc="&B12&";"&B17,B15)
 
Upvote 0

Forum statistics

Threads
1,215,886
Messages
6,127,578
Members
449,385
Latest member
KMGLarson

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top